Jinserk Baik
Jinserk Baik
Thanks @thatindiandude and actually that's what I did, but I'd like to suggest to update this project to work with PyTorch 0.5
I replaced `torch.sparse.torch.eye` to `torch.eye` and it seems to work.
I have no public github so let me explain a little bit more detail here: ``` dirs/files structure: settings/__init__.py settings/components/__init__.py settings/components/common.py settings/components/apps.py settings/environments/__init__.py settings/environments/development.py __ settings/__init__.py: from split_settings.tools import include,...
This is my full `docker-compose.yml`: ``` version: '3' services: redis: image: redis:latest container_name: redis hostname: redis expose: - 6379 command: redis-server --requirepass ***** pgsync: image: private/pgsync:latest container_name: pgsync hostname: pgsync...
And at least I can get OK from auth in `redis-cli` of the container: ``` root@redis:/data# redis-cli 127.0.0.1:6379> auth ***** OK 127.0.0.1:6379>
That's odd because the first copy of the records was successful. We have 45M records in psql db, and the first successful copy was 45,521,632 records, and now 45,521,869 records...
@voyc-jean No. all the sync subsystems are on our on-prem server with Docker compose env. The redis is a node on the docker system. We're going to deploy the system...
@voyc-jean Sure. Here you are: ``` [ { "database": "kyuluxmain", "index": "kyu-mol-211208", "nodes": { "table": "pgmols_mol", "label": "mols", "schema": "public", "columns": [ "id", "createtime", "inchikey", "smiles", "mass" ], "children": [...
I'm testing pgsync with `2.1.10`and found the new logs you mentioned: ``` opensearch-redis | 1:M 12 Jan 2022 13:30:07.238 * 1 changes in 3600 seconds. Saving... opensearch-redis | 1:M 12...
I'm reading the code of `pgsync`, and not fully understand yet, but in the `pgsync/sync.py`: ``` with Timer(): for document in json.load(open(config)): sync = Sync(document, verbose=verbose, **kwargs) sync.pull() if daemon:...