Skip to content

Commit 5dad6dd

Browse files
authored
[Cherry-Pick-Main][SDK] Updates upload API in python SDK to support batch and parallel capture uploads (#55)
1 parent cb549a1 commit 5dad6dd

File tree

10 files changed

+566
-101
lines changed

10 files changed

+566
-101
lines changed

docker-compose.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,23 @@ services:
6969
- DJANGO_ENV_PATH=/home/sml-app/install/config/env
7070
- DJANGO_DEBUGGER=True
7171
- PORT_PTVSD=8005
72-
command: python manage.py runserver 0.0.0.0:8000 --noreload
72+
#command: python manage.py runserver 0.0.0.0:8000 --noreload
73+
# --workers 4
74+
command: gunicorn --bind 0.0.0.0:8000 --timeout 3600 --max-requests 250 --reload server.wsgi:application
7375
ports:
7476
- "8000:8000"
7577
depends_on:
7678
- db
7779
- redis
7880
- sensiml.databse.initalize
81+
nginx:
82+
image: nginx:latest
83+
ports:
84+
- "80:80"
85+
volumes:
86+
- ./nginx/conf.d:/etc/nginx/conf.d
87+
depends_on:
88+
- sensiml.cloud
7989
sensiml.pipelines:
8090
#mem_limit: "2000M"
8191
image: sensiml/base
@@ -116,7 +126,7 @@ services:
116126
user: sml-app
117127
deploy:
118128
mode: replicated
119-
replicas: 8
129+
replicas: 2
120130
volumes:
121131
- server_data:/home/sml-app/data/
122132
- server_libs:/home/sml-app/install/lib/

nginx/conf.d/nginx.conf

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
server {
2+
listen 80;
3+
client_max_body_size 1G;
4+
client_header_buffer_size 32k;
5+
large_client_header_buffers 2 32k;
6+
7+
location / {
8+
proxy_pass http://sensiml.cloud:8000;
9+
proxy_set_header Host $host;
10+
proxy_set_header X-Real-IP $remote_addr;
11+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
12+
}
13+
}

src/python_client/sensiml/dclproj/dclproj.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ def get_capture_stats(self, capture: str) -> Dict:
401401
return capture_list[capture_list.name == capture].to_dict(orient="records")[0]
402402

403403
def get_capture_metadata(
404-
self, capture: str, include_ids: bool = False
404+
self, capture: str = None, include_ids: bool = False
405405
) -> DataFrame:
406406
"""Gets the metadata for the specified capture
407407
@@ -436,7 +436,10 @@ def get_capture_metadata(
436436
"CaptureMetadataValue", fields, fk_fields=fk_fields, header=header
437437
)
438438

439-
return df[df["capture"] == capture]
439+
if capture is not None:
440+
return df[df["capture"] == capture]
441+
442+
return df
440443

441444
def get_segments(self, sessions: Optional[List] = None):
442445
"""

0 commit comments

Comments
 (0)