vesoft-inc / nebula-importer

Nebula Graph Importer with Go
Apache License 2.0
90 stars 60 forks source link

Support hash function for FIXED_STRING type vid #312

Open xiajingchun opened 3 months ago

xiajingchun commented 3 months ago

Introduction

Currently this is not supported. In some case, even for FIXED_STRING vid type, the original data used for vid might be too long, hash it to INT then convert to string can be a good solution.

Contents

Support hash function for FIXED_STRING type id, and once set, cast the hash value to string as vid.

Related work