This repository has been archived on 2025-06-17. You can view files and clone it, but cannot push or open issues or pull requests.

8 lines
154 B
Python

import threading
from service.test import test
def run_kafka_spark():
print('run_kafka_spark')
t1 = threading.Thread(target=test)
t1.start()