nebula-python icon indicating copy to clipboard operation
nebula-python copied to clipboard

Client API of Nebula Graph in Python

Results 44 nebula-python issues
Sort by recently updated
recently updated
newest added

ref: https://gist.github.com/wey-gu/5543c33987c0a5e8f7474b9b80cd36aa

type/enhancement
help wanted

like https://github.com/vesoft-inc/nebula-go/pull/312, typed, with an ensure/apply reconcile capability

type/feature req

我有一份csv的实体和边的数据,在利用python执行插入语句的操作时,不会报错,但是查询操作后的对应图空间时,发现数据未插入。这种情况偶尔发生,并且是执行相同python脚本,有时数据全部插入成功,但是偶尔会出现未成功插入的情况。比如我有200个待插入数据,最后发现只插入了不到200个。如何解决

``` config = Config() config.max_connection_pool_size = 10 connection_pool = ConnectionPool() connection_pool.init([('x.x.x.x', 9669)], config) session = connection_pool.get_session("root", "nebula1") # own code...... connection_pool.close() ``` An exception is thrown at the end of...

``` tests/test_session_pool.py::test_session_pool_multi_thread tests/test_session_pool.py::TestSessionPoolBasic::test_pool_init /home/runner/work/nebula-python/nebula-python/.venv/lib/python3.12/site-packages/_pytest/unraisableexception.py:78: PytestUnraisableExceptionWarning: Exception ignored in: Traceback (most recent call last): File "/home/runner/work/nebula-python/nebula-python/nebula3/gclient/net/SessionPool.py", line 73, in __del__ self.close() File "/home/runner/work/nebula-python/nebula-python/nebula3/gclient/net/SessionPool.py", line 329, in close with self._lock: ^^^^^^^^^^ AttributeError:...

**Bug Question** We are experiencing some consistency issues with our Nebula setup. It is ran on Azure in its own container instance group with GraphD, MetaD and StorageD, inspired by...

**General Question** Is there truly no way to query whether a space or schema are ready? You *must* use a `time.sleep(20)` (per the example: https://github.com/vesoft-inc/nebula-python/blob/master/example/get_started.ipynb)? This seems like an amateur...

nebula3-python(3.8), 使用gunicorn+gevnet 启动web服务,代码中class外部创建session_pool, class内部使用,没有close操作。单例启动session可以被使用后close,基于gevent下,session持续增长,不能被释放。使用session pool 什么时机才会释放session id

I have started nebula services using nebula-console and got this below. **Notice: Defaulting to localhost (127.0.0.1) with port 9669 using credentials (username: root, password: nebula). Welcome!** After I have created...

**Please check the FAQ documentation before raising an issue** **Describe the bug (__required__)** 在使用SessionPool的execute_py方法查询数据时,在传入datetime类型的参数时,会被强转为date类型,导致查询不到符合条件的数据 **Your Environments (__required__)** win11 python3.9 * OS: `uname -a` * Commit id (e.g. `a3ffc7d8`) **How To...