Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ingest Failed: Not implemented: Files have overlapping ranges #1337

Closed
tong-hao opened this issue Nov 26, 2019 · 7 comments
Closed

Ingest Failed: Not implemented: Files have overlapping ranges #1337

tong-hao opened this issue Nov 26, 2019 · 7 comments
Assignees

Comments

@tong-hao
Copy link
Contributor

Describe the bug(must be provided)
I executed DOWNLOAD HDFS "hdfs://localhost:9000/tmp/test/10" successfully.
And then, I executed ingest. It's failed.

LOG:

RocksEngine.cpp:366] Ingest Failed: Not implemented: Files have overlapping ranges

May be our racksdb cannot implement this feature.
facebook/rocksdb#5539

Your Environments(must be provided)

  • OS: ubuntu 1804
  • Compliler: g++ (GCC) 8.2.0
  • CPU: lscpu
@amber-moe
Copy link
Contributor

What is your data size? If you have a large dataset, INGEST will block RocksDB, please avoid running the command at requirement peak. Let me know if this reply helps you.

@tong-hao
Copy link
Contributor Author

The num of vertex and edge is less than 100.
download.tar.gz

@dangleptr
Copy link
Contributor

we have fixed it in #1265
could you retry with the master branch?

@tong-hao
Copy link
Contributor Author

I reinstalled it. And I executed ingest successfully.
But I cannot fetch anything by my vertex id.

How many vertexes and edges are ingested?
How do I fetch vertexes or edges without id?

(user@127.0.0.1) [idmapping]> ingest
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100    27  100    27    0     0   1500      0 --:--:-- --:--:-- --:--:--  1588
Execution succeeded (Time spent: 50233/50966 us)

(user@127.0.0.1) [idmapping]> fetch prop on pin 3681517981201367768;
Execution succeeded (Time spent: 4429/5350 us)

@tong-hao
Copy link
Contributor Author

The data of download still exist after I executed ingest.

root@ht-dev:/usr/local/nebula# ll data/storage/nebula/9/download/1/
总用量 16
drwxr-xr-x 2 root root 4096 11月 27 14:29 ./
drwxr-xr-x 4 root root 4096 11月 27 14:29 ../
-rw-r--r-- 1 root root  800 11月 27 14:29 edge-01000000D882B82F1961173301000040FFFFFFFFFFFFFFFF1AB4D4B4078F17080100000000000000.sst
-rw-r--r-- 1 root root  820 11月 27 14:29 vertex-010000001AB4D4B4078F1708010000000100000000000000.sst


root@ht-dev:/usr/local/nebula# ll data/storage/nebula/9/download/2
总用量 16
drwxr-xr-x 2 root root 4096 11月 27 14:29 ./
drwxr-xr-x 4 root root 4096 11月 27 14:29 ../
-rw-r--r-- 1 root root  749 11月 27 14:29 edge-01010000F187B82F1964173301000040FFFFFFFFFFFFFFFF2D22BDB40718FC070100000000000000.sst
-rw-r--r-- 1 root root  781 11月 27 14:29 vertex-010100002D22BDB40718FC07010000000100000000000000.sst

@darionyaphet
Copy link
Contributor

Could you check the schema ? Is the field consistent ?

@tong-hao
Copy link
Contributor Author

I got it.

partitionId = vertexId % partitionNum + 1;

Sophie-Xie added a commit that referenced this issue Oct 24, 2022
* Return an semantic error if no tag is found for a property while validating a match.

* Return an semantic error if no tag is found for a property while validating a match.

* Add a tck case for the fixed bug.

* commented out unused codes.

* add tag in tck cases

* fixing tck

* updated tck cases to add missing cases that are supposed to be there.

* Return an semantic error if no tag is found for a property while validating a match.

* Add a tck case for the fixed bug.

* commented out unused codes.

* add tag in tck cases

* fixing tck

* updated tck cases to add missing cases that are supposed to be there.

* update

* update tck case.

Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com>
Sophie-Xie added a commit that referenced this issue Oct 24, 2022
* Return an semantic error if no tag is found for a property while validating a match.

* Return an semantic error if no tag is found for a property while validating a match.

* Add a tck case for the fixed bug.

* commented out unused codes.

* add tag in tck cases

* fixing tck

* updated tck cases to add missing cases that are supposed to be there.

* Return an semantic error if no tag is found for a property while validating a match.

* Add a tck case for the fixed bug.

* commented out unused codes.

* add tag in tck cases

* fixing tck

* updated tck cases to add missing cases that are supposed to be there.

* update

* update tck case.

Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com>
Shinji-IkariG pushed a commit that referenced this issue Oct 25, 2022
* Fix/find start error (#4771)

* Fix find start error.

* Fix test.

Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com>

* Introduce JSON_EXTRACT function (#4743)

* Introduce JSON_EXTRACT function

close: #3513
Note, we don't support the path argument in this phase

* address jievince's review commit

removed the unecessary interface of construct Map from Value

* Type handling

Only primitive types are supported

* Support depth1 nested

* lint: fmt

* ut: ctest, fixed wrong expression of Map

* fix ut errors

* tck: case for json_extract added

Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com>

* Fix bug #1337 from ent (#4740)

* Return an semantic error if no tag is found for a property while validating a match.

* Return an semantic error if no tag is found for a property while validating a match.

* Add a tck case for the fixed bug.

* commented out unused codes.

* add tag in tck cases

* fixing tck

* updated tck cases to add missing cases that are supposed to be there.

* Return an semantic error if no tag is found for a property while validating a match.

* Add a tck case for the fixed bug.

* commented out unused codes.

* add tag in tck cases

* fixing tck

* updated tck cases to add missing cases that are supposed to be there.

* update

* update tck case.

Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com>

* Fix RollUpApplyExecutor (#4778)

Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com>

* Fix mutil-match crash in optimization phase (#4780)

fmt

small fix

small fix

* fix subgraph step (#4776)

* fix subgraph step

* forbid function call in where clause

* fix error

Co-authored-by: shylock <33566796+Shylock-Hg@users.noreply.github.com>
Co-authored-by: Wey Gu <weyl.gu@gmail.com>
Co-authored-by: Cheng Xuntao <7731943+xtcyclist@users.noreply.github.com>
Co-authored-by: Yichen Wang <18348405+Aiee@users.noreply.github.com>
Co-authored-by: kyle.cao <kyle.cao@vesoft.com>
Co-authored-by: jimingquan <mingquan.ji@vesoft.com>
yixinglu pushed a commit to yixinglu/nebula that referenced this issue Jan 31, 2023
* Return an semantic error if no tag is found for a property while validating a match.

* Return an semantic error if no tag is found for a property while validating a match.

* Add a tck case for the fixed bug.

* commented out unused codes.

* add tag in tck cases

* fixing tck

* updated tck cases to add missing cases that are supposed to be there.

* Return an semantic error if no tag is found for a property while validating a match.

* Add a tck case for the fixed bug.

* commented out unused codes.

* add tag in tck cases

* fixing tck

* updated tck cases to add missing cases that are supposed to be there.

* update

* update tck case.

Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com>

Co-authored-by: Cheng Xuntao <7731943+xtcyclist@users.noreply.github.com>
Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants