Merge pull request #90 from open-metadata/scheduler-change

Sdscheduler changed to simplescheduler
This commit is contained in:
Ayush Shah 2021-08-10 11:34:18 +05:30 committed by GitHub
commit 3d48c6878a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
---
description: >-
This guide will help install Sdscheduler and schedule connectors for
This guide will help install Simple Scheduler and schedule connectors for
ingestion.
---

View File

@ -15,7 +15,7 @@
import json
from metadata.ingestion.workflow.workflow import Workflow
from sdscheduler.corescheduler import job
from simplescheduler.corescheduler import job
class MetadataLoaderJob(job.JobBase, Workflow):

View File

@ -14,10 +14,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from sdscheduler.server import server
from simplescheduler.server import server
import os
import json
from sdscheduler.server import server
from simplescheduler.server import server
class SimpleServer(server.SchedulerServer):

View File

@ -68,7 +68,7 @@ connector_requirements = {
}
scheduler_requirements = {
"apns@git+git://github.com/djacobs/PyAPNs.git#egg=apns",
"sdscheduler@git+https://github.com/StreamlineData/sdscheduler.git#egg=sdscheduler"
"simplescheduler@git+https://github.com/StreamlineData/sdscheduler.git#egg=simplescheduler"
}
base_plugins = {
"pii-tags",
@ -113,7 +113,7 @@ setup(
package_dir={"": "src"},
packages=find_namespace_packages(where='src', exclude=['tests*']),
dependency_links=['git+git://github.com/djacobs/PyAPNs.git#egg=apns',
'git+https://github.com/StreamlineData/sdscheduler.git#egg=sdscheduler'],
'git+https://github.com/StreamlineData/sdscheduler.git#egg=simplescheduler'],
entry_points={
"console_scripts": ["metadata = metadata.cmd:metadata"],
"metadata.ingestion.source.plugins": [