You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, if you follow the above configuration file, the generated SST files will only contain the key without the TagID
Here's why,the sst writer changes along with the partitioning information of the key, causing lower-ranked data in the same task to overwrite previous data(with same part)
Thanks a lot for your excellent analysis and suggestions!
The default value(false) could be revisited
what is the cost of turning repartitionWithNebula True ?
The impact of this value on v3.0.0(That repartitionWithNebula: False by default will result in losing tagID in SST file) should be highlighted in documentations
I found a problem that resulted in the generated SST file containing only the key without the TagID
Desription: Accourding to struct of 3.0 vertex data:
If all goes well, when the Exchange program is finished, the SST file will contain data for both keys
However, if you follow the above configuration file, the generated SST files will only contain the key without the TagID
Here's why,the sst writer changes along with the partitioning information of the key, causing lower-ranked data in the same task to overwrite previous data(with same part)
https://github.com/DemocracyAndLiberty/nebula-exchange/blob/master/exchange-common/src/main/scala/com/vesoft/exchange/common/writer/FileBaseWriter.scala
Accroding to https://github.com/DemocracyAndLiberty/nebula-exchange/blob/master/exchange-common/src/main/scala/com/vesoft/exchange/common/processor/Processor.scala,I noticed that setting
repartitionWithNebula
to true solved this problem when the number of nebula space partitions is greater than 1.So whether to forcibly enable repartitioning when the number of nebula space partitions is greater than 1?
The text was updated successfully, but these errors were encountered: