Bentsi
Bentsi
succeeded to find the correct cookie, but now getting results parsing issue: ``` Traceback (most recent call last): File "/home/bentsi/.pyenv/versions/cai-backend/lib/python3.10/site-packages/search_engine_parser/core/base.py", line 252, in get_results search_results = self.parse_result(results, **kwargs) File "/home/bentsi/.pyenv/versions/cai-backend/lib/python3.10/site-packages/search_engine_parser/core/base.py",...
#168 should fix it
@reedwm I've installed latest TF using > pip install tf-nightly-gpu as suggested and got: Successfully installed astor-0.6.2 gast-0.2.0 tb-nightly-1.5.0a20180114 termcolor-1.1.0 tf-nightly-gpu-1.6.0.dev20180114 (tensorflow_p27) ubuntu@ip-172-31-9-87:/mnt/weka/benchmarks/scripts/tf_cnn_benchmarks$ python2 tf_cnn_benchmarks.py --help Traceback (most recent call...
@db-vmw Question-1: latency fault are not supported Question-2: try to run the command without sudo
@db-vmw I read the code of the `server.cc` and indeed there is support for delays. This is applied to all syscalls, not only for `write`.
confirming this in Python 2.7: ``` >>> f = open("/tmp/charibdushka/tst", "wr+") >>> import binascii >>> hs="123456789ABCDEF1" >>> hb=binascii.a2b_hex(hs) >>> f.write(hb) >>> f.seek(0) >>> f.read() Traceback (most recent call last): File...
More precise code to reproduce the issue: ``` f = os.open("/mounted_dir", os.O_RDWR|os.O_CREAT, 0666) hs="123456789ABCDEF1" hb=binascii.a2b_hex(hs) os.write(f, hb) print ("%s" % os.fstat(f)) os.read(f, 100) ``` First run (fails with bad file...
`./charybdefs /var/data-dir -omodules=subdir,subdir=/var/data-dir -o nonempty` But you should NOT use the same dir for mount and for source. CharybdeFS will get stuck.
@db-vmw what is the command that you used to mount CharybdeFS?
Looking in the C++ code again, the latency is implemented as a delay before executing the syscall, you can fix this and fire a PR