Skip to content

Compute Module🔗

The earthdaily.earthone.compute module provides access to the EarthOne Compute API for managing and executing computational functions and jobs.

ComputeClient🔗

ComputeClient 🔗

Bases: ApiService, DefaultClientMixin

Source code in earthdaily/earthone/core/compute/compute_client.py
class ComputeClient(ApiService, DefaultClientMixin):
    _namespace_cache = dict()

    def __init__(self, url=None, auth=None, catalog_client=None, retries=None):
        if auth is None:
            auth = Auth.get_default_auth()

        if catalog_client is None:
            catalog_client = CatalogClient(auth=auth)

        if url is None:
            url = get_settings().compute_url

        self.catalog_client = catalog_client
        super().__init__(url, auth=auth, retries=retries)

    def iter_log_lines(self, url: str, timestamps: bool = True) -> Iterator[str]:
        response = self.session.get(url, stream=True)
        lines = response.iter_lines()

        for line in lines:
            structured_log = json.loads(line)
            timestamp, log = structured_log["date"], structured_log["log"]
            log_date = (
                datetime.fromisoformat(timestamp[:-1] + "+00:00")
                .replace(tzinfo=timezone.utc)
                .astimezone()  # Convert to users timezone
            )

            if timestamps:
                log = f"{log_date} {log}"

            yield log

    def check_credentials(self):
        """Determine if valid credentials are already set for the user."""
        _ = self.session.get("/credentials")

    def set_credentials(self):
        if self.auth.client_id and self.auth.client_secret:
            self.session.post(
                "/credentials",
                json={
                    "client_id": self.auth.client_id,
                    "client_secret": self.auth.client_secret,
                },
            )
        else:
            # We only have a JWT and no client id/secret, so validate
            # that there are already valid credentials set for the user.
            # This situation will generally only arise when used from
            # some backend process.
            self.check_credentials()

    def get_namespace(self, function_id: str) -> Optional[str]:
        if function_id in self._namespace_cache:
            return self._namespace_cache[function_id]

        return None

    def set_namespace(self, function_id: str, namespace: str):
        if not (function_id or namespace):
            return

        self._namespace_cache[function_id] = namespace

check_credentials 🔗

check_credentials()

Determine if valid credentials are already set for the user.

Source code in earthdaily/earthone/core/compute/compute_client.py
def check_credentials(self):
    """Determine if valid credentials are already set for the user."""
    _ = self.session.get("/credentials")

Function🔗

Function 🔗

Bases: Document

The serverless cloud function that you can call directly or submit many jobs to.

Source code in earthdaily/earthone/core/compute/function.py
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
class Function(Document):
    """The serverless cloud function that you can call directly or submit many jobs to."""

    id: str = Attribute(
        str,
        filterable=True,
        readonly=True,
        sortable=True,
        doc="The ID of the Function.",
    )
    creation_date: datetime = DatetimeAttribute(
        filterable=True,
        readonly=True,
        sortable=True,
        doc="""The date the Function was created.""",
    )
    name: str = Attribute(
        str,
        filterable=True,
        sortable=True,
        doc="The name of the Function.",
    )
    image: str = Attribute(
        str,
        filterable=True,
        mutable=False,
        doc="The base image used to create the Function.",
    )
    cpus: float = Attribute(
        Cpus,
        filterable=True,
        sortable=True,
        doc="The number of cpus to request when executing the Function.",
    )
    memory: int = Attribute(
        Memory,
        filterable=True,
        sortable=True,
        doc="The amount of memory, in megabytes, to request when executing the Function.",
    )
    maximum_concurrency: int = Attribute(
        int,
        filterable=True,
        sortable=True,
        doc="The maximum number of Jobs that execute at the same time for this Function.",
    )
    namespace: str = Attribute(
        str,
        filterable=True,
        readonly=True,
        doc="The storage namespace for the Function.",
    )
    owner: str = Attribute(
        str,
        filterable=True,
        readonly=True,
        doc="The owner of the Function.",
    )
    status: FunctionStatus = Attribute(
        FunctionStatus,
        filterable=True,
        readonly=True,
        sortable=True,
        doc="The status of the Function.",
    )
    timeout: int = Attribute(
        int,
        filterable=True,
        sortable=True,
        doc="The number of seconds Jobs can run before timing out for this Function.",
    )
    retry_count: int = Attribute(
        int,
        filterable=True,
        sortable=True,
        doc="The total number of retries requested for a Job before it failed.",
    )
    enabled: bool = Attribute(
        bool,
        filterable=True,
        sortable=True,
        doc="Whether the Function accepts job submissions and reruns.",
    )
    auto_start: bool = Attribute(
        bool,
        filterable=True,
        sortable=True,
        doc="Whether the Function will be placed into READY status once building is complete.",
    )
    environment: Dict[str, str] = Attribute(
        dict,
        doc="The environment variables to set for Jobs run by the Function.",
    )
    modified_date: datetime = DatetimeAttribute(
        filterable=True,
        readonly=True,
        sortable=True,
        doc="""The date the Function was last modified or processed a job submission.""",
    )
    job_statistics: Dict = Attribute(
        dict,
        readonly=True,
        doc=(
            "Statistics about the Job statuses for this Function. This attribute will only be "
            "available if includes='job.statistics' is specified in the request."
        ),
    )

    _ENTRYPOINT_TEMPLATE = "{source}\n\n\nmain = {function_name}\n"
    _IMPORT_TEMPLATE = "from {module} import {obj}"
    _SYS_PACKAGES = ".*(?:site|dist)-packages"

    _ENTRYPOINT = "__dlentrypoint__.py"
    _REQUIREMENTS = "requirements.txt"

    def __init__(
        self,
        function: Callable = None,
        requirements: List[str] = None,
        include_data: List[str] = None,
        include_modules: List[str] = None,
        name: str = None,
        image: str = None,
        cpus: Cpus = None,
        memory: Memory = None,
        maximum_concurrency: int = None,
        timeout: int = None,
        retry_count: int = None,
        client: ComputeClient = None,
        **extra,
    ):  # check to see if we need more validation here (type conversions)
        """
        Parameters
        ----------
        function : Callable
            The function to be called in a Compute Job.
        requirements : List[str], optional
            A list of Python dependencies required by this function.
        include_data : List[str], optional
            Non-Python data files to include in the compute function.
        name : str, optional
            Name of the function, will take name of function if not provided.
        image : str
            The location of a docker image to be used for the environment where the function
            will be executed.
        cpus : Cpus
            The number of CPUs requested for a single Job. CPUs can be specified as an integer,
            float, or string. Supported CPU options include: ``0.25, 0.5, 1, 2, 4, 8, 16,
            '0.25vCPU', '0.5vCPU', '1vCPU', '2vCPU', '4vCPU', '8vCPU', '16vCPU'``.
        memory : Memory
            The maximum memory requirement for a single Job. Memory can be specified as an
            integer or string. If an integer is provided, it is assumed that the units are
            megabytes. For instance, ``1024`` is equivalent to one ``1GB`` or ``1024MB`` of
            memory. Alternatively, memory can be specified as a case-insensitive memory string,
            such as ``'1GB'``, ``'1Gi'``, ``'1024MB'``, or ``'1024Mi'``, all of which are
            equivalent. The allowable memory for a `Function` is determined by the number of
            CPUs requested. Supported memory options per CPUs requested include: ``0.25vCPU:
            0.5GB, 1GB, or 2GB``, ``0.5vCPU: 1 - 4GB in 1GB increments``, ``1vCPU: 2 - 8GB in
            1GB increments``, ``2vCPU: 4 - 16GB in 1GB increments``, ``4vCPU: 8 - 30GB in 1GB
            increments``, ``8vCPU: 16 - 60GB in 4GB increments``, ``16vCPU: 32 - 120GB in 8GB
            increments``.
        maximum_concurrency : int
            The maximum number of jobs to run in parallel.
        timeout : int, optional
            Maximum runtime for a single job in seconds. Job will be killed if it exceeds
            this limit.
        retry_count : int, optional
            Number of times to retry a job if it fails.
        client : ComputeClient, optional
            If set, operations on the function will be performed using the configured client.
            Otherwise, the default client will be used.

        Examples
        --------
        Retrieving an existing function and executing it.

        >>> fn = Function.get(<function-id>)
        >>> fn()
        Job <job id>: "pending"

        Creating a new function.

        >>> from earthdaily.earthone.compute import Function
        >>> def test_func():
        ...     print("Hello :)")
        >>> fn = Function(
        ...     test_func,
        ...     requirements=[],
        ...     name="my_func",
        ...     image="test_image",
        ...     cpus=1,
        ...     memory=16,
        ...     maximum_concurrency=5,
        ...     timeout=3600,
        ...     retry_count=1,
        ... )
        >>> fn()
        Job <job id>: "pending"
        """

        self._client = client or ComputeClient.get_default_client()
        self._function = function
        self._requirements = requirements
        self._include_data = include_data
        self._include_modules = include_modules

        # if name is not provided and function is a string, use the name of the function
        # if name is not provided and function is a callable, set the name to __name__
        if not name and self._function:
            if isinstance(self._function, str):
                name = self._function.split(".")[-1]
            else:
                name = self._function.__name__

        # When a Function is hydrated from the server, register the namespace
        # with the client so that it can be used for subsequent calls.
        if "id" in extra and "namespace" in extra:
            self._client.set_namespace(extra["id"], extra["namespace"])

        super().__init__(
            name=name,
            image=image,
            cpus=cpus,
            memory=memory,
            maximum_concurrency=maximum_concurrency,
            timeout=timeout,
            retry_count=retry_count,
            **extra,
        )

    def __call__(
        self,
        *args,
        tags: List[str] = None,
        environment: Dict[str, str] = None,
        **kwargs,
    ):
        """Execute the function with the given arguments.

        This call will return a Job object that can be used to monitor the state
        of the job.

        Returns
        -------
        Job
            The Job that was submitted.

        Parameters
        ----------
        args : Any, optional
            Positional arguments to pass to the function.
        tags : List[str], optional
            A list of tags to apply to the Job.
        kwargs : Any, optional
            Keyword arguments to pass to the function.
        environment : Dict[str, str], optional
            Environment variables to be set in the environment of the running Job.
            Will be merged with environment variables set on the Function, with
            the Job environment variables taking precedence.
        """
        self.save()
        job = Job(
            function_id=self.id,
            args=args,
            kwargs=kwargs,
            environment=environment,
            tags=tags,
        )
        job.save()
        return job

    def _sys_paths(self):
        """Get the system paths."""

        if not hasattr(self, "_cached_sys_paths"):
            # use longest matching path entries.
            self._cached_sys_paths = sorted(
                map(os.path.abspath, sys.path), key=len, reverse=True
            )
        return self._cached_sys_paths

    def _get_globals(self, func) -> Set[str]:
        """Get the globals for a function."""
        instructions: List[dis.Instruction] = dis.get_instructions(func)
        globals = set()

        for i in instructions:
            if inspect.iscode(i.argval):
                # The function can have nested functions with their own globals
                # so we need to recursively disassemble those as well
                globals.update(self._get_globals(i.argval))
            elif i.opname == "LOAD_GLOBAL" and not hasattr(builtins, i.argval):
                globals.add(i.argval)

        return globals

    def _find_object(self, name):
        """Search for an object as specified by a fully qualified name.
        The fully qualified name must refer to an object that can be resolved
        through the module search path.

        Parameters
        ----------
        name : str
            Fully qualified name of the object to search for.
            Must refer to an object that can be resolved through the module search path.

        Returns
        -------
        object
            The object specified by the fully qualified name.
        module_path : list
            The fully qualified module path.
        object_path : list
            The fully qualified object path.
        """

        module_path = []
        object_path = []

        obj = None
        parts = name.split(".")

        for part in parts:
            error = None

            if hasattr(obj, part):
                # Could be any object (module, class, etc.)
                obj = getattr(obj, part)

                if inspect.ismodule(obj) and not object_path:
                    module_path.append(part)
                else:
                    object_path.append(part)
            else:
                # If not found, assume it's a module that must be loaded
                if object_path:
                    error = "'{}' has no attribute '{}'".format(type(obj), part)
                    raise NameError(
                        "Cannot resolve function name '{}': {}".format(name, error)
                    )
                else:
                    module_path.append(part)

                    current_module_path = ".".join(module_path)
                    try:
                        obj = importlib.import_module(current_module_path)
                    except Exception as ex:
                        traceback = sys.exc_info()[2]
                        raise NameError(
                            "Cannot resolve function name '{}', error importing module {}: {}".format(
                                name, current_module_path, ex
                            )
                        ).with_traceback(traceback)

        # When we're at the end, we should have found a valid object
        return obj, module_path, object_path

    def _bundle(self):
        """Bundle the function and its dependencies into a zip file."""

        function = self._function
        include_modules = self._include_modules
        requirements = self._requirements

        if not function:
            raise ValueError("Function not provided!")

        data_files = self._data_globs_to_paths()

        try:
            with NamedTemporaryFile(delete=False, suffix=".zip", mode="wb") as f:
                with zipfile.ZipFile(
                    f, mode="w", compression=zipfile.ZIP_DEFLATED
                ) as bundle:
                    self._write_main_function(function, bundle)
                    self._write_data_files(data_files, bundle)

                    if include_modules:
                        self._write_include_modules(self._include_modules, bundle)

                    if requirements:
                        bundle.writestr(
                            self._REQUIREMENTS, self._bundle_requirements(requirements)
                        )
            return f.name
        except Exception:
            if os.path.exists(f.name):
                os.remove(f.name)
            raise

    def _write_main_function(self, f, archive):
        """Write the main function to the archive."""

        is_named_function = isinstance(f, str)

        if is_named_function:
            f, module_path, function_path = self._find_object(f)

            if not callable(f):
                raise ValueError(
                    "Compute main function must be a callable: `{}`".format(f)
                )

            # Simply import the module
            source = self._IMPORT_TEMPLATE.format(
                module=".".join(module_path), obj=function_path[0]
            )
            function_name = ".".join(function_path)
        else:
            # make sure function_name is set
            function_name = f.__name__

            if not inspect.isfunction(f):
                raise ValueError(
                    "Compute main function must be user-defined function: `{}`".format(
                        f
                    )
                )

            # We can't get the code for a given lambda
            if f.__name__ == "<lambda>":
                raise ValueError(
                    "Compute main function cannot be a lambda expression: `{}`".format(
                        f
                    )
                )

            # Furthermore, the given function cannot refer to globals
            bound_globals = self._get_globals(f)

            if bound_globals:
                raise BoundGlobalError(
                    "Illegal reference to one or more global variables in your "
                    "function: {}".format(bound_globals)
                )

            try:
                source = inspect.getsource(f).strip()
            except Exception:
                try:
                    import dill

                    source = dill.source.getsource(f).strip()
                except ImportError:
                    raise ValueError(
                        "Unable to retrieve the source of interactively defined functions."
                        " To support this install dill: pip install dill"
                    )

        entrypoint_source = self._ENTRYPOINT_TEMPLATE.format(
            source=source, function_name=function_name
        )
        archive.writestr(self._ENTRYPOINT, entrypoint_source)

    def _write_data_files(self, data_files, archive):
        """Write the data files to the archive."""

        for path, archive_path in data_files:
            archive.write(path, archive_path)

    def _find_module_file(self, mod_name):
        """Search for module file in python path. Raise ImportError if not found."""

        try:
            mod = importlib.import_module(mod_name)
            mod_file = mod.__file__.replace(".pyc", ".py", 1)
            return mod_file

        except ImportError as ie:
            # Search for possible pyx file
            mod_basename = "{}.pyx".format(mod_name.replace(".", "/"))
            for s in sys.path:
                mod_file_option = os.path.join(s, mod_basename)
                if os.path.isfile(mod_file_option):
                    # Check that found cython source not in CWD (causes build problems)
                    if os.getcwd() == os.path.dirname(os.path.abspath(mod_file_option)):
                        raise ValueError(
                            "Cannot include cython modules from working directory: `{}`.".format(
                                mod_file_option
                            )
                        )
                    else:
                        return mod_file_option

            # Raise caught ImportError if we still haven't found the module
            raise ie

    def _write_include_modules(self, include_modules, archive):
        """Write the included modules to the archive."""

        for mod_name in include_modules:
            mod_file = self._find_module_file(mod_name)

            # detect system packages from distribution or virtualenv locations.
            if re.match(self._SYS_PACKAGES, mod_file) is not None:
                raise ValueError(
                    "Cannot include system modules: `{}`.".format(mod_file)
                )

            if not os.path.exists(mod_file):
                raise IOError(
                    "Source code for module is missing, only byte code exists: `{}`.".format(
                        mod_name
                    )
                )
            sys_path = self._sys_path_prefix(mod_file)

            self._include_init_files(os.path.dirname(mod_file), archive, sys_path)
            archive_names = archive.namelist()
            # this is a package, get all decendants if they exist.
            if os.path.basename(mod_file) == "__init__.py":
                for dirpath, dirnames, filenames in os.walk(os.path.dirname(mod_file)):
                    for file_ in [f for f in filenames if f.endswith((".py", ".pyx"))]:
                        path = os.path.join(dirpath, file_)
                        arcname = self._archive_path(path, None, sys_path)
                        if arcname not in archive_names:
                            archive.write(path, arcname=arcname)
            else:
                archive.write(
                    mod_file, arcname=self._archive_path(mod_file, None, sys_path)
                )

    def _include_init_files(self, dir_path, archive, sys_path):
        """Include __init__.py files for all parent directories."""

        relative_dir_path = os.path.relpath(dir_path, sys_path)
        archive_names = archive.namelist()
        # have we walked this path before?
        if os.path.join(relative_dir_path, "__init__.py") not in archive_names:
            partial_path = ""
            for path_part in relative_dir_path.split(os.sep):
                partial_path = os.path.join(partial_path, path_part)
                rel_init_location = os.path.join(partial_path, "__init__.py")
                abs_init_location = os.path.join(sys_path, rel_init_location)
                if not os.path.exists(abs_init_location):
                    raise IOError(
                        "Source code for module is missing: `{}`.".format(
                            abs_init_location
                        )
                    )
                if rel_init_location not in archive_names:
                    archive.write(abs_init_location, arcname=rel_init_location)

    def _bundle_requirements(self, requirements):
        """Bundle the requirements into the archive."""

        if isinstance(requirements, str):
            return self._requirements_file(requirements)
        else:
            return self._requirements_list(requirements)

    def _requirements_file(self, requirements):
        """Read the requirements file and validate it."""

        if not os.path.isfile(requirements):
            raise ValueError(
                "Requirements file at {} not found. Did you mean to specify a single requirement? "
                "Pass it wrapped in a list.".format(requirements)
            )
        with open(requirements) as f:
            return self._requirements_list([line.strip() for line in f.readlines()])

    def _requirements_list(self, requirements):
        """Validate the requirements list."""

        bad_requirements = []
        for requirement in requirements:
            try:
                Requirement(requirement)
            except InvalidRequirement:
                # comment or pip-specific option not understood by packaging
                if requirement.startswith("#") or requirement.startswith("-"):
                    continue
                if requirement.startswith("https://"):
                    continue
                # e.g. torch-2.0.1+cpu which packaging doesn't understand
                if "+" in requirement:
                    try:
                        Requirement(requirement.rsplit("+")[0])
                        continue
                    except InvalidRequirement:
                        pass
                bad_requirements.append(requirement)
        if bad_requirements:
            raise ValueError(
                "Invalid Python requirements: {}".format(",".join(bad_requirements))
            )

        return "\n".join(requirements)

    def _sys_path_prefix(self, path):
        """Get the system path prefix for a given path."""

        absolute_path = os.path.abspath(path)
        for sys_path in self._sys_paths():
            if absolute_path.startswith(sys_path):
                return sys_path
        else:
            raise IOError("Location is not on system path: `{}`".format(path))

    def _archive_path(self, path, archive_prefix, sys_path):
        """Get the archive path for a given path."""

        if archive_prefix:
            return os.path.join(archive_prefix, os.path.relpath(path, sys_path))
        else:
            return os.path.relpath(path, sys_path)

    def _data_globs_to_paths(self) -> List[str]:
        """Convert data globs to absolute paths."""

        data_files = []

        # if there are no data files, return empty list
        if not self._include_data:
            return data_files

        for pattern in self._include_data:
            is_glob = glob.has_magic(pattern)
            matches = glob.glob(pattern)

            if not matches:
                if is_glob:
                    warnings.warn(f"Include data pattern had no matches: {pattern}")
                else:
                    raise ValueError(f"No data file found for path: {pattern}")

            for relative_path in matches:
                path = os.path.abspath(relative_path)

                if os.path.exists(path):
                    if os.path.isdir(path):
                        relative_path = relative_path.rstrip("/")

                        raise ValueError(
                            "Cannot accept directories as include data."
                            " Use globs instead: {} OR {}".format(
                                f"{relative_path}/*.*", f"{relative_path}/**/*.*"
                            )
                        )
                    else:
                        archive_path = self._archive_path(
                            path, None, sys_path=self._sys_path_prefix(path)
                        )
                        if archive_path == "__main__.py":
                            raise ValueError(
                                f"{pattern} includes a file with the forbidden relative path `__main__.py`"
                            )
                        data_files.append((path, archive_path))
                else:
                    raise ValueError(f"Data file does not exist: {path}")

        return data_files

    @classmethod
    def get(cls, id: str, client: ComputeClient = None, **params):
        """Get Function by id.

        Parameters
        ----------
        id : str
            Id of function to get.
        client: ComputeClient, optional
            If set, the result will be retrieved using the configured client.
            Otherwise, the default client will be used.
        include : List[str], optional
            List of additional attributes to include in the response.
            Allowed values are:

            - "job.statistics": Include statistics about the Job statuses for this Function.

        Example
        -------
        >>> from earthdaily.earthone.compute import Function
        >>> fn = Function.get(<func_id>)
        <Function name="test_name" image=test_image cpus=1 memory=16 maximum_concurrency=5 timeout=3 retries=1
        """
        client = client or ComputeClient.get_default_client()
        response = client.session.get(f"/functions/{id}", params=params)
        return cls(**response.json(), client=client, saved=True)

    @classmethod
    def list(
        cls, page_size: int = 100, client: ComputeClient = None, **params
    ) -> Search["Function"]:
        """Lists all Functions for a user.

        If you would like to filter Functions, use :py:meth:`Function.search`.

        Parameters
        ----------
        page_size : int, default=100
            Maximum number of results per page.
        client: ComputeClient, optional
            If set, the result will be retrieved using the configured client.
            Otherwise, the default client will be used.
        include : List[str], optional
            List of additional attributes to include in the response.
            Allowed values are:

            - "job.statistics": Include statistics about the Job statuses for this Function.

        Example
        -------
        >>> from earthdaily.earthone.compute import Function
        >>> fn = Function.list()
        """
        params = {"page_size": page_size, **params}
        return cls.search(client=client).param(**params)

    @classmethod
    def search(cls, client: ComputeClient = None) -> Search["Function"]:
        """Creates a search for Functions.

        The search is lazy and will be executed when the search is iterated over or
        :py:meth:`Search.collect` is called.

        Parameters
        ----------
        client: ComputeClient, optional
            If set, the result will be retrieved using the configured client.
            Otherwise, the default client will be used.

        Example
        -------
        >>> from earthdaily.earthone.compute import Function, FunctionStatus
        >>> fns: List[Function] = (
        ...     Function.search()
        ...     .filter(Function.status.in_([
        ...         FunctionStatus.BUILDING, FunctionStatus.AWAITING_BUNDLE
        ...     ])
        ...     .collect()
        ... )
        Collection([Function <fn-id1>: building, Function <fn-id2>: awaiting_bundle])
        """
        client = client or ComputeClient.get_default_client()
        return Search(Function, client, url="/functions")

    @classmethod
    def update_credentials(cls, client: ComputeClient = None):
        """Updates the credentials for the Functions and Jobs run by this user.

        These credentials are used by other EarthOne services.

        If the user invalidates existing credentials and needs to update them,
        you should call this method.

        Notes
        -----
        Credentials are automatically updated when a new Function is created.

        Parameters
        ----------
        client: ComputeClient, optional
            If set, the operation will be performed using the configured client.
            Otherwise, the default client will be used.

        """
        client = client or ComputeClient.get_default_client()
        client.set_credentials()

    @property
    def jobs(self) -> JobSearch:
        """Returns a JobSearch for all the Jobs for the Function."""
        if self.state != DocumentState.SAVED:
            raise ValueError(
                "Cannot search for jobs for a Function that has not been saved"
            )

        return Job.search(client=self._client).filter(Job.function_id == self.id)

    def build_log(self):
        """Retrieves the build log for the Function."""
        if self.state != DocumentState.SAVED:
            raise ValueError(
                "Cannot retrieve logs for a Function that has not been saved"
            )

        response = self._client.session.get(f"/functions/{self.id}/log")

        return gzip.decompress(response.content).decode()

    def delete(self, delete_results: bool = False):
        """Deletes the Function and all associated Jobs.

        If any jobs are in a running state, the deletion will fail.

        Please see the `:meth:~earthdaily.earthone.compute.Function.delete_jobs` method for more
        information on deleting large numbers of jobs.

        Parameters
        ----------
        delete_results : bool, default=False
            If True, deletes the job result blobs as well.
        """
        if self.state == DocumentState.NEW:
            raise ValueError("Cannot delete a Function that has not been saved")

        self.delete_jobs(delete_results=delete_results)

        self._client.session.delete(f"/functions/{self.id}")
        self._deleted = True

    def disable(self):
        """Disables the Function so that new jobs cannot be submitted."""
        self.enabled = False
        if self.state != DocumentState.NEW:
            self.save()

    def enable(self):
        """Enables the Function so that new jobs may be submitted."""
        self.enabled = True
        if self.state != DocumentState.NEW:
            self.save()

    def save(self):
        """Creates the Function if it does not already exist.

        If the Function already exists, it will be updated on the server if the Function
        instance was modified.

        Examples
        --------
        Create a Function without creating jobs:

        >>> from earthdaily.earthone.compute import Function
        >>> def test_func():
        ...     print("Hello :)")
        >>> fn = Function(
        ...     test_func,
        ...     requirements=[],
        ...     name="my_func",
        ...     image="test_image",
        ...     cpus=1,
        ...     memory=16,
        ...     maximum_concurrency=5,
        ...     timeout=3600,
        ...     retry_count=1,
        ... )
        >>> fn.save()

        Updating a Function:

        >>> from earthdaily.earthone.compute import Function
        >>> fn = Function.get(<func_id>)
        >>> fn.memory = 4096  # 4 Gi
        >>> fn.save()
        """

        if self.state == DocumentState.SAVED:
            # Document already exists on the server without changes locally
            return

        if self.state == DocumentState.NEW:
            self.update_credentials(client=self._client)

            code_bundle_path = self._bundle()
            response = self._client.session.post(
                "/functions", json=self.to_dict(exclude_none=True)
            )
            response_json = response.json()
            self._load_from_remote(response_json["function"])

            # Upload the bundle to s3
            s3_client = ThirdPartyService()
            upload_url = response_json["bundle_upload_url"]
            code_bundle = io.open(code_bundle_path, "rb")
            headers = {
                "content-type": "application/octet-stream",
            }
            s3_client.session.put(upload_url, data=code_bundle, headers=headers)

            # Complete the upload with compute
            response = self._client.session.post(f"/functions/{self.id}/bundle")
            self._load_from_remote(response.json())
        elif self.state == DocumentState.MODIFIED:
            response = self._client.session.patch(
                f"/functions/{self.id}", json=self.to_dict(only_modified=True)
            )
            self._load_from_remote(response.json())
        else:
            raise ValueError(
                f"Unexpected Function state {self.state}."
                f'Reload the function from the server: Function.get("{self.id}")'
            )

    def start(self):
        """Starts Function so that pending jobs can be executed."""
        if self.state != DocumentState.SAVED:
            raise ValueError("Cannot start a Function that has not been saved")

        response = self._client.session.patch(
            f"/functions/{self.id}", json={"status": FunctionStatus.READY.value}
        )
        self._load_from_remote(response.json())

    def stop(self):
        """Stops Function so that pending jobs cannot be executed."""
        if self.state != DocumentState.SAVED:
            raise ValueError("Cannot start a Function that has not been saved")

        response = self._client.session.patch(
            f"/functions/{self.id}", json={"status": FunctionStatus.STOPPED.value}
        )
        self._load_from_remote(response.json())

    @deprecate(renamed={"iterargs": "kwargs"})
    def map(
        self,
        args: Iterable[Iterable[Any]],
        kwargs: Iterable[Mapping[str, Any]] = None,
        tags: List[str] = None,
        batch_size: int = 1000,
        environments: Iterable[Mapping[str, str]] = None,
    ) -> JobBulkCreateResult:
        """Submits multiple jobs efficiently with positional args to each function call.

        Preferred over repeatedly calling the function, such as in a loop, when submitting
        multiple jobs.

        If supplied, the length of ``kwargs`` must match the length of ``args``. All parameter
        values must be JSON serializable.

        As an example, if the function takes two positional arguments and has a keyword
        argument ``x``, you can submit multiple jobs like this:

        >>> async_func.map([['a', 'b'], ['c', 'd']], [{'x': 1}, {'x': 2}])  # doctest: +SKIP

        is equivalent to:

        >>> async_func('a', 'b', x=1)  # doctest: +SKIP
        >>> async_func('c', 'd', x=2)  # doctest: +SKIP

        Notes
        -----
        Map is idempotent for the initial call such that request errors that occur once started,
        will not cause duplicate jobs to be submitted. However, if the method is called again
        with the same arguments, it will submit duplicate jobs.

        You should always check the return value to ensure all jobs were submitted successfully
        and handle any errors that may have occurred.

        Parameters
        ----------
        args : Iterable[Iterable[Any]]
            An iterable of iterables of arguments. For each outer element, a job will be submitted
            with each of its elements as the positional arguments to the function. The length of
            each element of the outer iterable must match the number of positional arguments to
            the function.
        kwargs : Iterable[Mapping[str, Any]], optional
            An iterable of Mappings with keyword arguments. For each outer element, the Mapping will
            be expanded into keyword arguments for the function.
        environments : Iterable[Mapping[str, str]], optional
            AN iterable of Mappings of Environment variables to be set in the environment of the
            running Jobs. The values for each job will be merged with environment variables set
            on the Function, with the Job environment variables taking precedence.
        tags : List[str], optional
            A list of tags to apply to all jobs submitted.
        batch_size : int, default=1000
            The number of jobs to submit in each batch. The maximum batch size is 1000.

        Returns
        ------_
        JobBulkCreateResult
            An object containing the jobs that were submitted and any errors that occurred.
            This object is compatible with a list of Job objects for backwards compatibility.

            If the value of `JobBulkCreateResult.is_success` is False, you should check
            `JobBulkCreateResult.errors` and handle any errors that occurred.

        Raises
        ------
        ClientError, ServerError
            If the request to create the first batch of jobs, fails after all retries have
            been exhausted.

            Otherwise, any errors will be available in the returned JobBulkCreateResult.
        """
        if self.state != DocumentState.SAVED:
            raise ValueError("Cannot execute a Function that has not been saved")

        if batch_size < 1 or batch_size > 1000:
            raise ValueError("Batch size must between 1 and 1000")

        args = [list(iterable) for iterable in args]
        if kwargs is not None:
            kwargs = [dict(mapping) for mapping in kwargs]
            if len(kwargs) != len(args):
                raise ValueError(
                    "The number of kwargs must match the number of args. "
                    f"Got {len(args)} args and {len(kwargs)} kwargs."
                )
        if environments is not None:
            environments = [dict(mapping) for mapping in environments]
            if len(environments) != len(args):
                raise ValueError(
                    "The number of environments must match the number of args. "
                    f"Got {len(args)} args and {len(environments)} environments."
                )

        result = JobBulkCreateResult()

        # Send the jobs in batches of batch_size
        for index, (positional, named, env) in enumerate(
            itertools.zip_longest(
                batched(args, batch_size),
                batched(kwargs or [], batch_size),
                batched(environments or [], batch_size),
            )
        ):
            payload = {
                "function_id": self.id,
                "bulk_args": positional,
                "bulk_kwargs": named,
                "bulk_environments": env,
                "reference_id": str(uuid.uuid4()),
            }

            if tags:
                payload["tags"] = tags

            # This implementation uses a `reference_id` to ensure that the request is idempotent
            # and duplicate jobs are not submitted in a retry scenario.
            try:
                response = self._client.session.post("/jobs/bulk", json=payload)
                result.extend([Job(**data, saved=True) for data in response.json()])
            except exceptions.NotFoundError:
                # If one of these errors occurs, we cannot continue submitting any jobs at all
                raise
            except Exception as exc:
                if index == 0:
                    # The first batch failed, let the user deal with the exception as all
                    # the batches would likely fail.
                    raise

                result.append_error(
                    JobBulkCreateError(
                        function=self,
                        args=payload["bulk_args"],
                        kwargs=payload["bulk_kwargs"],
                        environments=payload["bulk_environments"],
                        reference_id=payload["reference_id"],
                        exception=exc,
                    )
                )

        return result

    def cancel_jobs(self, query: Optional[JobSearch] = None, job_ids: List[str] = None):
        """Cancels all jobs for the Function matching the given query.

        If both `query` and `job_ids` are None, all jobs for the Function will be canceled.
        If both are provided, they will be combined with an AND operator. Any jobs matched
        by `query` or `job_ids` which are not associated with this function will be ignored.

        Parameters
        ----------
        query : JobSearch, optional
            Query to filter jobs to cancel.
        job_ids : List[str], optional
            List of job ids to cancel.
        """
        if self.state != DocumentState.SAVED:
            raise ValueError(
                "Cannot cancel jobs for a Function that has not been saved"
            )

        if query is None:
            query = self.jobs
        else:
            query = query.filter(Job.function_id == self.id)
        if job_ids:
            query = query.filter(Job.id.in_(job_ids))

        return query.cancel()

    def rerun(self, query: Optional[JobSearch] = None, job_ids: List[str] = None):
        """Submits all the unsuccessful jobs matching the query to be rerun.

        If both `query` and `job_ids` are None, all rerunnable jobs for the Function
        will be rerun. If both are provided, they will be combined with an AND operator.
        Any jobs matched by `query` or `job_ids` which are not associated with
        this function will be ignored.

        Parameters
        ----------
        query : JobSearch, optional
            Query to filter jobs to rerun.
        job_ids : List[str], optional
            List of job ids to rerun.
        """
        if self.state != DocumentState.SAVED:
            raise ValueError("Cannot execute a Function that has not been saved")

        if query is None:
            query = self.jobs
        else:
            query = query.filter(Job.function_id == self.id)
        if job_ids:
            query = query.filter(Job.id.in_(job_ids))

        return query.rerun()

    def delete_jobs(
        self,
        query: Optional[JobSearch] = None,
        job_ids: List[str] = None,
        delete_results: bool = False,
    ) -> List[str]:
        """Deletes all non-running jobs for the Function matching the given query.

        If both `query` and `job_ids` are None, all jobs for the Function will be deleted.
        If both are provided, they will be combined with an AND operator. Any jobs matched
        by `query` or `job_ids` which are not associated with this function will be ignored.

        Also deletes any job log blobs for the jobs. Use `delete_results=True` to delete the
        job result blobs as well.

        There is a limit to how many jobs can be deleted in a single request before the request
        times out. If you need to delete a large number of jobs and experience timeouts, consider
        using a loop to delete batches, using the `query` parameter with a limit (e.g.
        ``async_func.delete_jobs(async_func.jobs.limit(10000))``, or use the `job_ids`
        parameter to limit the number of jobs to delete.

        Parameters
        ----------
        query : JobSearch, optional
            Query to filter jobs to delete.
        job_ids : List[str], optional
            List of job ids to delete.
        delete_results : bool, default=False
            If True, deletes the job result blobs as well.

        Returns
        -------
        List[str]
            List of job ids that were deleted.
        """
        if self.state != DocumentState.SAVED:
            raise ValueError(
                "Cannot delete jobs for a Function that has not been saved"
            )

        if query is None:
            query = self.jobs
        else:
            query = query.filter(Job.function_id == self.id)
        if job_ids:
            query = query.filter(Job.id.in_(job_ids))

        return query.delete(delete_results=delete_results)

    def refresh(self, includes: Optional[str] = None):
        """Updates the Function instance with data from the server.

        Parameters
        ----------
        includes : Optional[str], optional
            List of additional attributes to include in the response.
            Allowed values are:

            - "job.statistics": Include statistics about the Job statuses for this Function.
        """
        if self.state == DocumentState.NEW:
            raise ValueError("Cannot refresh a Function that has not been saved")

        if includes:
            params = {"include": includes}
        elif includes is None and self.job_statistics:
            params = {"include": ["job.statistics"]}
        else:
            params = {}

        response = self._client.session.get(f"/functions/{self.id}", params=params)
        self._load_from_remote(response.json())

    def iter_results(self, cast_type: Type[Serializable] = None):
        """Iterates over all successful job results.

        Parameters
        ----------
        cast_type : Type[Serializable], optional
            If set, the results will be cast to the given type.
        """
        if self.state != DocumentState.SAVED:
            raise ValueError(
                "Cannot retrieve results for a Function that has not been saved"
            )

        for job in self.jobs.filter(Job.status == JobStatus.SUCCESS):
            yield job.result(cast_type=cast_type)

    def results(self, cast_type: Type[Serializable] = None):
        """Retrieves all the job results for the Function as a list.

        Notes
        -----
        This immediately downloads all results into a list and could run out of memory.
        If the result set is large, strongly consider using :py:meth:`Function.iter_results`
        instead.

        Parameters
        ----------
        cast_type : Type[Serializable], optional
            If set, the results will be cast to the given type.
        """
        return list(self.iter_results(cast_type=cast_type))

    def as_completed(self, jobs: Iterable[Job], timeout=None, interval=10):
        """Yields jobs as they complete.

        Completion includes success, failure, timeout, and canceled.

        Can be used in any iterable context.

        Parameters
        ----------
        jobs : Iterable[Job]
            The jobs to wait for completion. Jobs must be associated with this Function.
        timeout : int, default=None
            Maximum time to wait before timing out. If not set, this will continue
            polling until all jobs have completed.
        interval : int, default=10
            Interval in seconds for how often to check if jobs have been completed.
        """
        if self.state != DocumentState.SAVED:
            raise ValueError(
                "Cannot retrieve jobs for a Function that has not been saved"
            )

        job_ids = set()
        for job in jobs:
            if job.function_id != self.id:
                raise ValueError(
                    f"Job {job.id} is not associated with Function {self.id}"
                )
            job_ids.add(job.id)

        current_interval = interval
        chunk_size = MAX_FUNCTION_IDS_PER_REQUEST
        start_time = time.time()
        while job_ids:
            self.refresh()
            if self.status == FunctionStatus.BUILD_FAILED:
                raise RuntimeError(
                    f"Function {self.name} failed to build. Check the build log for more details."
                )

            hits = set()
            query_ids = {job_id for job_id in job_ids}
            # refresh the job state, but only a chunk at a time
            while query_ids:
                chunk_ids = set(
                    itertools.islice(query_ids, min(chunk_size, len(query_ids)))
                )
                query_ids -= chunk_ids

                for job in Job.search(client=self._client).filter(
                    Job.id.in_(list(chunk_ids)) & Job.status.in_(JobStatus.terminal())
                ):
                    hits.add(job.id)
                    yield job

            job_ids -= hits

            if hits:
                current_interval = interval

            if timeout:
                t = timeout - (time.time() - start_time)
                if t <= 0:
                    raise TimeoutError(
                        f"Function {self.name} did not complete before timeout!"
                    )

                t = min(t, current_interval)
            else:
                t = current_interval

            # Don't sleep as long as we are picking up hits
            if not hits:
                time.sleep(t)

                current_interval = min(current_interval * 2, 60)

    def wait_for_completion(self, timeout=None, interval=10):
        """Waits until all submitted jobs for a given Function are completed.

        Completion includes success, failure, timeout, and canceled.

        Parameters
        ----------
        timeout : int, default=None
            Maximum time to wait before timing out. If not set, this method will
            block indefinitely.
        interval : int, default=10
            Interval in seconds for how often to check if jobs have been completed.
        """
        if self.state != DocumentState.SAVED:
            raise ValueError("Cannot wait for a Function that has not been saved")

        start_time = time.time()

        while True:
            self.refresh(includes=["job.statistics"])

            if self.status == FunctionStatus.BUILD_FAILED:
                raise RuntimeError(
                    f"Function {self.name} failed to build. Check the build log for more details."
                )

            if self.status in [FunctionStatus.READY, FunctionStatus.STOPPED]:
                job_statistics = getattr(self, "job_statistics", {})
                if (
                    job_statistics.get("pending", 0) == 0
                    and job_statistics.get("running", 0) == 0
                    and job_statistics.get("cancel", 0) == 0
                    and job_statistics.get("canceling", 0) == 0
                ):
                    break

            if timeout:
                t = timeout - (time.time() - start_time)
                if t <= 0:
                    raise TimeoutError(
                        f"Function {self.name} did not complete before timeout!"
                    )

                t = min(t, interval)
            else:
                t = interval

            time.sleep(t)

jobs property 🔗

jobs: JobSearch

Returns a JobSearch for all the Jobs for the Function.

__init__ 🔗

__init__(function: Callable = None, requirements: List[str] = None, include_data: List[str] = None, include_modules: List[str] = None, name: str = None, image: str = None, cpus: Cpus = None, memory: Memory = None, maximum_concurrency: int = None, timeout: int = None, retry_count: int = None, client: ComputeClient = None, **extra)
Parameters🔗

function : Callable The function to be called in a Compute Job. requirements : List[str], optional A list of Python dependencies required by this function. include_data : List[str], optional Non-Python data files to include in the compute function. name : str, optional Name of the function, will take name of function if not provided. image : str The location of a docker image to be used for the environment where the function will be executed. cpus : Cpus The number of CPUs requested for a single Job. CPUs can be specified as an integer, float, or string. Supported CPU options include: 0.25, 0.5, 1, 2, 4, 8, 16, '0.25vCPU', '0.5vCPU', '1vCPU', '2vCPU', '4vCPU', '8vCPU', '16vCPU'. memory : Memory The maximum memory requirement for a single Job. Memory can be specified as an integer or string. If an integer is provided, it is assumed that the units are megabytes. For instance, 1024 is equivalent to one 1GB or 1024MB of memory. Alternatively, memory can be specified as a case-insensitive memory string, such as '1GB', '1Gi', '1024MB', or '1024Mi', all of which are equivalent. The allowable memory for a Function is determined by the number of CPUs requested. Supported memory options per CPUs requested include: 0.25vCPU: 0.5GB, 1GB, or 2GB, 0.5vCPU: 1 - 4GB in 1GB increments, 1vCPU: 2 - 8GB in 1GB increments, 2vCPU: 4 - 16GB in 1GB increments, 4vCPU: 8 - 30GB in 1GB increments, 8vCPU: 16 - 60GB in 4GB increments, 16vCPU: 32 - 120GB in 8GB increments. maximum_concurrency : int The maximum number of jobs to run in parallel. timeout : int, optional Maximum runtime for a single job in seconds. Job will be killed if it exceeds this limit. retry_count : int, optional Number of times to retry a job if it fails. client : ComputeClient, optional If set, operations on the function will be performed using the configured client. Otherwise, the default client will be used.

Examples🔗

Retrieving an existing function and executing it.

fn = Function.get() fn() Job : "pending"

Creating a new function.

from earthdaily.earthone.compute import Function def test_func(): ... print("Hello :)") fn = Function( ... test_func, ... requirements=[], ... name="my_func", ... image="test_image", ... cpus=1, ... memory=16, ... maximum_concurrency=5, ... timeout=3600, ... retry_count=1, ... ) fn() Job : "pending"

Source code in earthdaily/earthone/core/compute/function.py
def __init__(
    self,
    function: Callable = None,
    requirements: List[str] = None,
    include_data: List[str] = None,
    include_modules: List[str] = None,
    name: str = None,
    image: str = None,
    cpus: Cpus = None,
    memory: Memory = None,
    maximum_concurrency: int = None,
    timeout: int = None,
    retry_count: int = None,
    client: ComputeClient = None,
    **extra,
):  # check to see if we need more validation here (type conversions)
    """
    Parameters
    ----------
    function : Callable
        The function to be called in a Compute Job.
    requirements : List[str], optional
        A list of Python dependencies required by this function.
    include_data : List[str], optional
        Non-Python data files to include in the compute function.
    name : str, optional
        Name of the function, will take name of function if not provided.
    image : str
        The location of a docker image to be used for the environment where the function
        will be executed.
    cpus : Cpus
        The number of CPUs requested for a single Job. CPUs can be specified as an integer,
        float, or string. Supported CPU options include: ``0.25, 0.5, 1, 2, 4, 8, 16,
        '0.25vCPU', '0.5vCPU', '1vCPU', '2vCPU', '4vCPU', '8vCPU', '16vCPU'``.
    memory : Memory
        The maximum memory requirement for a single Job. Memory can be specified as an
        integer or string. If an integer is provided, it is assumed that the units are
        megabytes. For instance, ``1024`` is equivalent to one ``1GB`` or ``1024MB`` of
        memory. Alternatively, memory can be specified as a case-insensitive memory string,
        such as ``'1GB'``, ``'1Gi'``, ``'1024MB'``, or ``'1024Mi'``, all of which are
        equivalent. The allowable memory for a `Function` is determined by the number of
        CPUs requested. Supported memory options per CPUs requested include: ``0.25vCPU:
        0.5GB, 1GB, or 2GB``, ``0.5vCPU: 1 - 4GB in 1GB increments``, ``1vCPU: 2 - 8GB in
        1GB increments``, ``2vCPU: 4 - 16GB in 1GB increments``, ``4vCPU: 8 - 30GB in 1GB
        increments``, ``8vCPU: 16 - 60GB in 4GB increments``, ``16vCPU: 32 - 120GB in 8GB
        increments``.
    maximum_concurrency : int
        The maximum number of jobs to run in parallel.
    timeout : int, optional
        Maximum runtime for a single job in seconds. Job will be killed if it exceeds
        this limit.
    retry_count : int, optional
        Number of times to retry a job if it fails.
    client : ComputeClient, optional
        If set, operations on the function will be performed using the configured client.
        Otherwise, the default client will be used.

    Examples
    --------
    Retrieving an existing function and executing it.

    >>> fn = Function.get(<function-id>)
    >>> fn()
    Job <job id>: "pending"

    Creating a new function.

    >>> from earthdaily.earthone.compute import Function
    >>> def test_func():
    ...     print("Hello :)")
    >>> fn = Function(
    ...     test_func,
    ...     requirements=[],
    ...     name="my_func",
    ...     image="test_image",
    ...     cpus=1,
    ...     memory=16,
    ...     maximum_concurrency=5,
    ...     timeout=3600,
    ...     retry_count=1,
    ... )
    >>> fn()
    Job <job id>: "pending"
    """

    self._client = client or ComputeClient.get_default_client()
    self._function = function
    self._requirements = requirements
    self._include_data = include_data
    self._include_modules = include_modules

    # if name is not provided and function is a string, use the name of the function
    # if name is not provided and function is a callable, set the name to __name__
    if not name and self._function:
        if isinstance(self._function, str):
            name = self._function.split(".")[-1]
        else:
            name = self._function.__name__

    # When a Function is hydrated from the server, register the namespace
    # with the client so that it can be used for subsequent calls.
    if "id" in extra and "namespace" in extra:
        self._client.set_namespace(extra["id"], extra["namespace"])

    super().__init__(
        name=name,
        image=image,
        cpus=cpus,
        memory=memory,
        maximum_concurrency=maximum_concurrency,
        timeout=timeout,
        retry_count=retry_count,
        **extra,
    )

__call__ 🔗

__call__(*args, tags: List[str] = None, environment: Dict[str, str] = None, **kwargs)

Execute the function with the given arguments.

This call will return a Job object that can be used to monitor the state of the job.

Returns🔗

Job The Job that was submitted.

Parameters🔗

args : Any, optional Positional arguments to pass to the function. tags : List[str], optional A list of tags to apply to the Job. kwargs : Any, optional Keyword arguments to pass to the function. environment : Dict[str, str], optional Environment variables to be set in the environment of the running Job. Will be merged with environment variables set on the Function, with the Job environment variables taking precedence.

Source code in earthdaily/earthone/core/compute/function.py
def __call__(
    self,
    *args,
    tags: List[str] = None,
    environment: Dict[str, str] = None,
    **kwargs,
):
    """Execute the function with the given arguments.

    This call will return a Job object that can be used to monitor the state
    of the job.

    Returns
    -------
    Job
        The Job that was submitted.

    Parameters
    ----------
    args : Any, optional
        Positional arguments to pass to the function.
    tags : List[str], optional
        A list of tags to apply to the Job.
    kwargs : Any, optional
        Keyword arguments to pass to the function.
    environment : Dict[str, str], optional
        Environment variables to be set in the environment of the running Job.
        Will be merged with environment variables set on the Function, with
        the Job environment variables taking precedence.
    """
    self.save()
    job = Job(
        function_id=self.id,
        args=args,
        kwargs=kwargs,
        environment=environment,
        tags=tags,
    )
    job.save()
    return job

get classmethod 🔗

get(id: str, client: ComputeClient = None, **params)

Get Function by id.

Parameters🔗

id : str Id of function to get. client: ComputeClient, optional If set, the result will be retrieved using the configured client. Otherwise, the default client will be used. include : List[str], optional List of additional attributes to include in the response. Allowed values are:

- "job.statistics": Include statistics about the Job statuses for this Function.
Example🔗

from earthdaily.earthone.compute import Function fn = Function.get() <Function name="test_name" image=test_image cpus=1 memory=16 maximum_concurrency=5 timeout=3 retries=1

Source code in earthdaily/earthone/core/compute/function.py
@classmethod
def get(cls, id: str, client: ComputeClient = None, **params):
    """Get Function by id.

    Parameters
    ----------
    id : str
        Id of function to get.
    client: ComputeClient, optional
        If set, the result will be retrieved using the configured client.
        Otherwise, the default client will be used.
    include : List[str], optional
        List of additional attributes to include in the response.
        Allowed values are:

        - "job.statistics": Include statistics about the Job statuses for this Function.

    Example
    -------
    >>> from earthdaily.earthone.compute import Function
    >>> fn = Function.get(<func_id>)
    <Function name="test_name" image=test_image cpus=1 memory=16 maximum_concurrency=5 timeout=3 retries=1
    """
    client = client or ComputeClient.get_default_client()
    response = client.session.get(f"/functions/{id}", params=params)
    return cls(**response.json(), client=client, saved=True)

list classmethod 🔗

list(page_size: int = 100, client: ComputeClient = None, **params) -> Search[Function]

Lists all Functions for a user.

If you would like to filter Functions, use 🇵🇾meth:Function.search.

Parameters🔗

page_size : int, default=100 Maximum number of results per page. client: ComputeClient, optional If set, the result will be retrieved using the configured client. Otherwise, the default client will be used. include : List[str], optional List of additional attributes to include in the response. Allowed values are:

- "job.statistics": Include statistics about the Job statuses for this Function.
Example🔗

from earthdaily.earthone.compute import Function fn = Function.list()

Source code in earthdaily/earthone/core/compute/function.py
@classmethod
def list(
    cls, page_size: int = 100, client: ComputeClient = None, **params
) -> Search["Function"]:
    """Lists all Functions for a user.

    If you would like to filter Functions, use :py:meth:`Function.search`.

    Parameters
    ----------
    page_size : int, default=100
        Maximum number of results per page.
    client: ComputeClient, optional
        If set, the result will be retrieved using the configured client.
        Otherwise, the default client will be used.
    include : List[str], optional
        List of additional attributes to include in the response.
        Allowed values are:

        - "job.statistics": Include statistics about the Job statuses for this Function.

    Example
    -------
    >>> from earthdaily.earthone.compute import Function
    >>> fn = Function.list()
    """
    params = {"page_size": page_size, **params}
    return cls.search(client=client).param(**params)

search classmethod 🔗

search(client: ComputeClient = None) -> Search[Function]

Creates a search for Functions.

The search is lazy and will be executed when the search is iterated over or 🇵🇾meth:Search.collect is called.

Parameters🔗

client: ComputeClient, optional If set, the result will be retrieved using the configured client. Otherwise, the default client will be used.

Example🔗

from earthdaily.earthone.compute import Function, FunctionStatus fns: List[Function] = ( ... Function.search() ... .filter(Function.status.in_([ ... FunctionStatus.BUILDING, FunctionStatus.AWAITING_BUNDLE ... ]) ... .collect() ... ) Collection([Function : building, Function : awaiting_bundle])

Source code in earthdaily/earthone/core/compute/function.py
@classmethod
def search(cls, client: ComputeClient = None) -> Search["Function"]:
    """Creates a search for Functions.

    The search is lazy and will be executed when the search is iterated over or
    :py:meth:`Search.collect` is called.

    Parameters
    ----------
    client: ComputeClient, optional
        If set, the result will be retrieved using the configured client.
        Otherwise, the default client will be used.

    Example
    -------
    >>> from earthdaily.earthone.compute import Function, FunctionStatus
    >>> fns: List[Function] = (
    ...     Function.search()
    ...     .filter(Function.status.in_([
    ...         FunctionStatus.BUILDING, FunctionStatus.AWAITING_BUNDLE
    ...     ])
    ...     .collect()
    ... )
    Collection([Function <fn-id1>: building, Function <fn-id2>: awaiting_bundle])
    """
    client = client or ComputeClient.get_default_client()
    return Search(Function, client, url="/functions")

update_credentials classmethod 🔗

update_credentials(client: ComputeClient = None)

Updates the credentials for the Functions and Jobs run by this user.

These credentials are used by other EarthOne services.

If the user invalidates existing credentials and needs to update them, you should call this method.

Notes🔗

Credentials are automatically updated when a new Function is created.

Parameters🔗

client: ComputeClient, optional If set, the operation will be performed using the configured client. Otherwise, the default client will be used.

Source code in earthdaily/earthone/core/compute/function.py
@classmethod
def update_credentials(cls, client: ComputeClient = None):
    """Updates the credentials for the Functions and Jobs run by this user.

    These credentials are used by other EarthOne services.

    If the user invalidates existing credentials and needs to update them,
    you should call this method.

    Notes
    -----
    Credentials are automatically updated when a new Function is created.

    Parameters
    ----------
    client: ComputeClient, optional
        If set, the operation will be performed using the configured client.
        Otherwise, the default client will be used.

    """
    client = client or ComputeClient.get_default_client()
    client.set_credentials()

build_log 🔗

build_log()

Retrieves the build log for the Function.

Source code in earthdaily/earthone/core/compute/function.py
def build_log(self):
    """Retrieves the build log for the Function."""
    if self.state != DocumentState.SAVED:
        raise ValueError(
            "Cannot retrieve logs for a Function that has not been saved"
        )

    response = self._client.session.get(f"/functions/{self.id}/log")

    return gzip.decompress(response.content).decode()

delete 🔗

delete(delete_results: bool = False)

Deletes the Function and all associated Jobs.

If any jobs are in a running state, the deletion will fail.

Please see the :meth:~earthdaily.earthone.compute.Function.delete_jobs method for more information on deleting large numbers of jobs.

Parameters🔗

delete_results : bool, default=False If True, deletes the job result blobs as well.

Source code in earthdaily/earthone/core/compute/function.py
def delete(self, delete_results: bool = False):
    """Deletes the Function and all associated Jobs.

    If any jobs are in a running state, the deletion will fail.

    Please see the `:meth:~earthdaily.earthone.compute.Function.delete_jobs` method for more
    information on deleting large numbers of jobs.

    Parameters
    ----------
    delete_results : bool, default=False
        If True, deletes the job result blobs as well.
    """
    if self.state == DocumentState.NEW:
        raise ValueError("Cannot delete a Function that has not been saved")

    self.delete_jobs(delete_results=delete_results)

    self._client.session.delete(f"/functions/{self.id}")
    self._deleted = True

disable 🔗

disable()

Disables the Function so that new jobs cannot be submitted.

Source code in earthdaily/earthone/core/compute/function.py
def disable(self):
    """Disables the Function so that new jobs cannot be submitted."""
    self.enabled = False
    if self.state != DocumentState.NEW:
        self.save()

enable 🔗

enable()

Enables the Function so that new jobs may be submitted.

Source code in earthdaily/earthone/core/compute/function.py
def enable(self):
    """Enables the Function so that new jobs may be submitted."""
    self.enabled = True
    if self.state != DocumentState.NEW:
        self.save()

save 🔗

save()

Creates the Function if it does not already exist.

If the Function already exists, it will be updated on the server if the Function instance was modified.

Examples🔗

Create a Function without creating jobs:

from earthdaily.earthone.compute import Function def test_func(): ... print("Hello :)") fn = Function( ... test_func, ... requirements=[], ... name="my_func", ... image="test_image", ... cpus=1, ... memory=16, ... maximum_concurrency=5, ... timeout=3600, ... retry_count=1, ... ) fn.save()

Updating a Function:

from earthdaily.earthone.compute import Function fn = Function.get() fn.memory = 4096 # 4 Gi fn.save()

Source code in earthdaily/earthone/core/compute/function.py
def save(self):
    """Creates the Function if it does not already exist.

    If the Function already exists, it will be updated on the server if the Function
    instance was modified.

    Examples
    --------
    Create a Function without creating jobs:

    >>> from earthdaily.earthone.compute import Function
    >>> def test_func():
    ...     print("Hello :)")
    >>> fn = Function(
    ...     test_func,
    ...     requirements=[],
    ...     name="my_func",
    ...     image="test_image",
    ...     cpus=1,
    ...     memory=16,
    ...     maximum_concurrency=5,
    ...     timeout=3600,
    ...     retry_count=1,
    ... )
    >>> fn.save()

    Updating a Function:

    >>> from earthdaily.earthone.compute import Function
    >>> fn = Function.get(<func_id>)
    >>> fn.memory = 4096  # 4 Gi
    >>> fn.save()
    """

    if self.state == DocumentState.SAVED:
        # Document already exists on the server without changes locally
        return

    if self.state == DocumentState.NEW:
        self.update_credentials(client=self._client)

        code_bundle_path = self._bundle()
        response = self._client.session.post(
            "/functions", json=self.to_dict(exclude_none=True)
        )
        response_json = response.json()
        self._load_from_remote(response_json["function"])

        # Upload the bundle to s3
        s3_client = ThirdPartyService()
        upload_url = response_json["bundle_upload_url"]
        code_bundle = io.open(code_bundle_path, "rb")
        headers = {
            "content-type": "application/octet-stream",
        }
        s3_client.session.put(upload_url, data=code_bundle, headers=headers)

        # Complete the upload with compute
        response = self._client.session.post(f"/functions/{self.id}/bundle")
        self._load_from_remote(response.json())
    elif self.state == DocumentState.MODIFIED:
        response = self._client.session.patch(
            f"/functions/{self.id}", json=self.to_dict(only_modified=True)
        )
        self._load_from_remote(response.json())
    else:
        raise ValueError(
            f"Unexpected Function state {self.state}."
            f'Reload the function from the server: Function.get("{self.id}")'
        )

start 🔗

start()

Starts Function so that pending jobs can be executed.

Source code in earthdaily/earthone/core/compute/function.py
def start(self):
    """Starts Function so that pending jobs can be executed."""
    if self.state != DocumentState.SAVED:
        raise ValueError("Cannot start a Function that has not been saved")

    response = self._client.session.patch(
        f"/functions/{self.id}", json={"status": FunctionStatus.READY.value}
    )
    self._load_from_remote(response.json())

stop 🔗

stop()

Stops Function so that pending jobs cannot be executed.

Source code in earthdaily/earthone/core/compute/function.py
def stop(self):
    """Stops Function so that pending jobs cannot be executed."""
    if self.state != DocumentState.SAVED:
        raise ValueError("Cannot start a Function that has not been saved")

    response = self._client.session.patch(
        f"/functions/{self.id}", json={"status": FunctionStatus.STOPPED.value}
    )
    self._load_from_remote(response.json())

map 🔗

map(args: Iterable[Iterable[Any]], kwargs: Iterable[Mapping[str, Any]] = None, tags: List[str] = None, batch_size: int = 1000, environments: Iterable[Mapping[str, str]] = None) -> JobBulkCreateResult

Submits multiple jobs efficiently with positional args to each function call.

Preferred over repeatedly calling the function, such as in a loop, when submitting multiple jobs.

If supplied, the length of kwargs must match the length of args. All parameter values must be JSON serializable.

As an example, if the function takes two positional arguments and has a keyword argument x, you can submit multiple jobs like this:

async_func.map([['a', 'b'], ['c', 'd']], [{'x': 1}, {'x': 2}]) # doctest: +SKIP

is equivalent to:

async_func('a', 'b', x=1) # doctest: +SKIP async_func('c', 'd', x=2) # doctest: +SKIP

Notes🔗

Map is idempotent for the initial call such that request errors that occur once started, will not cause duplicate jobs to be submitted. However, if the method is called again with the same arguments, it will submit duplicate jobs.

You should always check the return value to ensure all jobs were submitted successfully and handle any errors that may have occurred.

Parameters🔗

args : Iterable[Iterable[Any]] An iterable of iterables of arguments. For each outer element, a job will be submitted with each of its elements as the positional arguments to the function. The length of each element of the outer iterable must match the number of positional arguments to the function. kwargs : Iterable[Mapping[str, Any]], optional An iterable of Mappings with keyword arguments. For each outer element, the Mapping will be expanded into keyword arguments for the function. environments : Iterable[Mapping[str, str]], optional AN iterable of Mappings of Environment variables to be set in the environment of the running Jobs. The values for each job will be merged with environment variables set on the Function, with the Job environment variables taking precedence. tags : List[str], optional A list of tags to apply to all jobs submitted. batch_size : int, default=1000 The number of jobs to submit in each batch. The maximum batch size is 1000.

Returns ------_ JobBulkCreateResult An object containing the jobs that were submitted and any errors that occurred. This object is compatible with a list of Job objects for backwards compatibility.

If the value of `JobBulkCreateResult.is_success` is False, you should check
`JobBulkCreateResult.errors` and handle any errors that occurred.
Raises🔗

ClientError, ServerError If the request to create the first batch of jobs, fails after all retries have been exhausted.

Otherwise, any errors will be available in the returned JobBulkCreateResult.
Source code in earthdaily/earthone/core/compute/function.py
@deprecate(renamed={"iterargs": "kwargs"})
def map(
    self,
    args: Iterable[Iterable[Any]],
    kwargs: Iterable[Mapping[str, Any]] = None,
    tags: List[str] = None,
    batch_size: int = 1000,
    environments: Iterable[Mapping[str, str]] = None,
) -> JobBulkCreateResult:
    """Submits multiple jobs efficiently with positional args to each function call.

    Preferred over repeatedly calling the function, such as in a loop, when submitting
    multiple jobs.

    If supplied, the length of ``kwargs`` must match the length of ``args``. All parameter
    values must be JSON serializable.

    As an example, if the function takes two positional arguments and has a keyword
    argument ``x``, you can submit multiple jobs like this:

    >>> async_func.map([['a', 'b'], ['c', 'd']], [{'x': 1}, {'x': 2}])  # doctest: +SKIP

    is equivalent to:

    >>> async_func('a', 'b', x=1)  # doctest: +SKIP
    >>> async_func('c', 'd', x=2)  # doctest: +SKIP

    Notes
    -----
    Map is idempotent for the initial call such that request errors that occur once started,
    will not cause duplicate jobs to be submitted. However, if the method is called again
    with the same arguments, it will submit duplicate jobs.

    You should always check the return value to ensure all jobs were submitted successfully
    and handle any errors that may have occurred.

    Parameters
    ----------
    args : Iterable[Iterable[Any]]
        An iterable of iterables of arguments. For each outer element, a job will be submitted
        with each of its elements as the positional arguments to the function. The length of
        each element of the outer iterable must match the number of positional arguments to
        the function.
    kwargs : Iterable[Mapping[str, Any]], optional
        An iterable of Mappings with keyword arguments. For each outer element, the Mapping will
        be expanded into keyword arguments for the function.
    environments : Iterable[Mapping[str, str]], optional
        AN iterable of Mappings of Environment variables to be set in the environment of the
        running Jobs. The values for each job will be merged with environment variables set
        on the Function, with the Job environment variables taking precedence.
    tags : List[str], optional
        A list of tags to apply to all jobs submitted.
    batch_size : int, default=1000
        The number of jobs to submit in each batch. The maximum batch size is 1000.

    Returns
    ------_
    JobBulkCreateResult
        An object containing the jobs that were submitted and any errors that occurred.
        This object is compatible with a list of Job objects for backwards compatibility.

        If the value of `JobBulkCreateResult.is_success` is False, you should check
        `JobBulkCreateResult.errors` and handle any errors that occurred.

    Raises
    ------
    ClientError, ServerError
        If the request to create the first batch of jobs, fails after all retries have
        been exhausted.

        Otherwise, any errors will be available in the returned JobBulkCreateResult.
    """
    if self.state != DocumentState.SAVED:
        raise ValueError("Cannot execute a Function that has not been saved")

    if batch_size < 1 or batch_size > 1000:
        raise ValueError("Batch size must between 1 and 1000")

    args = [list(iterable) for iterable in args]
    if kwargs is not None:
        kwargs = [dict(mapping) for mapping in kwargs]
        if len(kwargs) != len(args):
            raise ValueError(
                "The number of kwargs must match the number of args. "
                f"Got {len(args)} args and {len(kwargs)} kwargs."
            )
    if environments is not None:
        environments = [dict(mapping) for mapping in environments]
        if len(environments) != len(args):
            raise ValueError(
                "The number of environments must match the number of args. "
                f"Got {len(args)} args and {len(environments)} environments."
            )

    result = JobBulkCreateResult()

    # Send the jobs in batches of batch_size
    for index, (positional, named, env) in enumerate(
        itertools.zip_longest(
            batched(args, batch_size),
            batched(kwargs or [], batch_size),
            batched(environments or [], batch_size),
        )
    ):
        payload = {
            "function_id": self.id,
            "bulk_args": positional,
            "bulk_kwargs": named,
            "bulk_environments": env,
            "reference_id": str(uuid.uuid4()),
        }

        if tags:
            payload["tags"] = tags

        # This implementation uses a `reference_id` to ensure that the request is idempotent
        # and duplicate jobs are not submitted in a retry scenario.
        try:
            response = self._client.session.post("/jobs/bulk", json=payload)
            result.extend([Job(**data, saved=True) for data in response.json()])
        except exceptions.NotFoundError:
            # If one of these errors occurs, we cannot continue submitting any jobs at all
            raise
        except Exception as exc:
            if index == 0:
                # The first batch failed, let the user deal with the exception as all
                # the batches would likely fail.
                raise

            result.append_error(
                JobBulkCreateError(
                    function=self,
                    args=payload["bulk_args"],
                    kwargs=payload["bulk_kwargs"],
                    environments=payload["bulk_environments"],
                    reference_id=payload["reference_id"],
                    exception=exc,
                )
            )

    return result

cancel_jobs 🔗

cancel_jobs(query: Optional[JobSearch] = None, job_ids: List[str] = None)

Cancels all jobs for the Function matching the given query.

If both query and job_ids are None, all jobs for the Function will be canceled. If both are provided, they will be combined with an AND operator. Any jobs matched by query or job_ids which are not associated with this function will be ignored.

Parameters🔗

query : JobSearch, optional Query to filter jobs to cancel. job_ids : List[str], optional List of job ids to cancel.

Source code in earthdaily/earthone/core/compute/function.py
def cancel_jobs(self, query: Optional[JobSearch] = None, job_ids: List[str] = None):
    """Cancels all jobs for the Function matching the given query.

    If both `query` and `job_ids` are None, all jobs for the Function will be canceled.
    If both are provided, they will be combined with an AND operator. Any jobs matched
    by `query` or `job_ids` which are not associated with this function will be ignored.

    Parameters
    ----------
    query : JobSearch, optional
        Query to filter jobs to cancel.
    job_ids : List[str], optional
        List of job ids to cancel.
    """
    if self.state != DocumentState.SAVED:
        raise ValueError(
            "Cannot cancel jobs for a Function that has not been saved"
        )

    if query is None:
        query = self.jobs
    else:
        query = query.filter(Job.function_id == self.id)
    if job_ids:
        query = query.filter(Job.id.in_(job_ids))

    return query.cancel()

rerun 🔗

rerun(query: Optional[JobSearch] = None, job_ids: List[str] = None)

Submits all the unsuccessful jobs matching the query to be rerun.

If both query and job_ids are None, all rerunnable jobs for the Function will be rerun. If both are provided, they will be combined with an AND operator. Any jobs matched by query or job_ids which are not associated with this function will be ignored.

Parameters🔗

query : JobSearch, optional Query to filter jobs to rerun. job_ids : List[str], optional List of job ids to rerun.

Source code in earthdaily/earthone/core/compute/function.py
def rerun(self, query: Optional[JobSearch] = None, job_ids: List[str] = None):
    """Submits all the unsuccessful jobs matching the query to be rerun.

    If both `query` and `job_ids` are None, all rerunnable jobs for the Function
    will be rerun. If both are provided, they will be combined with an AND operator.
    Any jobs matched by `query` or `job_ids` which are not associated with
    this function will be ignored.

    Parameters
    ----------
    query : JobSearch, optional
        Query to filter jobs to rerun.
    job_ids : List[str], optional
        List of job ids to rerun.
    """
    if self.state != DocumentState.SAVED:
        raise ValueError("Cannot execute a Function that has not been saved")

    if query is None:
        query = self.jobs
    else:
        query = query.filter(Job.function_id == self.id)
    if job_ids:
        query = query.filter(Job.id.in_(job_ids))

    return query.rerun()

delete_jobs 🔗

delete_jobs(query: Optional[JobSearch] = None, job_ids: List[str] = None, delete_results: bool = False) -> List[str]

Deletes all non-running jobs for the Function matching the given query.

If both query and job_ids are None, all jobs for the Function will be deleted. If both are provided, they will be combined with an AND operator. Any jobs matched by query or job_ids which are not associated with this function will be ignored.

Also deletes any job log blobs for the jobs. Use delete_results=True to delete the job result blobs as well.

There is a limit to how many jobs can be deleted in a single request before the request times out. If you need to delete a large number of jobs and experience timeouts, consider using a loop to delete batches, using the query parameter with a limit (e.g. async_func.delete_jobs(async_func.jobs.limit(10000)), or use the job_ids parameter to limit the number of jobs to delete.

Parameters🔗

query : JobSearch, optional Query to filter jobs to delete. job_ids : List[str], optional List of job ids to delete. delete_results : bool, default=False If True, deletes the job result blobs as well.

Returns🔗

List[str] List of job ids that were deleted.

Source code in earthdaily/earthone/core/compute/function.py
def delete_jobs(
    self,
    query: Optional[JobSearch] = None,
    job_ids: List[str] = None,
    delete_results: bool = False,
) -> List[str]:
    """Deletes all non-running jobs for the Function matching the given query.

    If both `query` and `job_ids` are None, all jobs for the Function will be deleted.
    If both are provided, they will be combined with an AND operator. Any jobs matched
    by `query` or `job_ids` which are not associated with this function will be ignored.

    Also deletes any job log blobs for the jobs. Use `delete_results=True` to delete the
    job result blobs as well.

    There is a limit to how many jobs can be deleted in a single request before the request
    times out. If you need to delete a large number of jobs and experience timeouts, consider
    using a loop to delete batches, using the `query` parameter with a limit (e.g.
    ``async_func.delete_jobs(async_func.jobs.limit(10000))``, or use the `job_ids`
    parameter to limit the number of jobs to delete.

    Parameters
    ----------
    query : JobSearch, optional
        Query to filter jobs to delete.
    job_ids : List[str], optional
        List of job ids to delete.
    delete_results : bool, default=False
        If True, deletes the job result blobs as well.

    Returns
    -------
    List[str]
        List of job ids that were deleted.
    """
    if self.state != DocumentState.SAVED:
        raise ValueError(
            "Cannot delete jobs for a Function that has not been saved"
        )

    if query is None:
        query = self.jobs
    else:
        query = query.filter(Job.function_id == self.id)
    if job_ids:
        query = query.filter(Job.id.in_(job_ids))

    return query.delete(delete_results=delete_results)

refresh 🔗

refresh(includes: Optional[str] = None)

Updates the Function instance with data from the server.

Parameters🔗

includes : Optional[str], optional List of additional attributes to include in the response. Allowed values are:

- "job.statistics": Include statistics about the Job statuses for this Function.
Source code in earthdaily/earthone/core/compute/function.py
def refresh(self, includes: Optional[str] = None):
    """Updates the Function instance with data from the server.

    Parameters
    ----------
    includes : Optional[str], optional
        List of additional attributes to include in the response.
        Allowed values are:

        - "job.statistics": Include statistics about the Job statuses for this Function.
    """
    if self.state == DocumentState.NEW:
        raise ValueError("Cannot refresh a Function that has not been saved")

    if includes:
        params = {"include": includes}
    elif includes is None and self.job_statistics:
        params = {"include": ["job.statistics"]}
    else:
        params = {}

    response = self._client.session.get(f"/functions/{self.id}", params=params)
    self._load_from_remote(response.json())

iter_results 🔗

iter_results(cast_type: Type[Serializable] = None)

Iterates over all successful job results.

Parameters🔗

cast_type : Type[Serializable], optional If set, the results will be cast to the given type.

Source code in earthdaily/earthone/core/compute/function.py
def iter_results(self, cast_type: Type[Serializable] = None):
    """Iterates over all successful job results.

    Parameters
    ----------
    cast_type : Type[Serializable], optional
        If set, the results will be cast to the given type.
    """
    if self.state != DocumentState.SAVED:
        raise ValueError(
            "Cannot retrieve results for a Function that has not been saved"
        )

    for job in self.jobs.filter(Job.status == JobStatus.SUCCESS):
        yield job.result(cast_type=cast_type)

results 🔗

results(cast_type: Type[Serializable] = None)

Retrieves all the job results for the Function as a list.

Notes🔗

This immediately downloads all results into a list and could run out of memory. If the result set is large, strongly consider using 🇵🇾meth:Function.iter_results instead.

Parameters🔗

cast_type : Type[Serializable], optional If set, the results will be cast to the given type.

Source code in earthdaily/earthone/core/compute/function.py
def results(self, cast_type: Type[Serializable] = None):
    """Retrieves all the job results for the Function as a list.

    Notes
    -----
    This immediately downloads all results into a list and could run out of memory.
    If the result set is large, strongly consider using :py:meth:`Function.iter_results`
    instead.

    Parameters
    ----------
    cast_type : Type[Serializable], optional
        If set, the results will be cast to the given type.
    """
    return list(self.iter_results(cast_type=cast_type))

as_completed 🔗

as_completed(jobs: Iterable[Job], timeout=None, interval=10)

Yields jobs as they complete.

Completion includes success, failure, timeout, and canceled.

Can be used in any iterable context.

Parameters🔗

jobs : Iterable[Job] The jobs to wait for completion. Jobs must be associated with this Function. timeout : int, default=None Maximum time to wait before timing out. If not set, this will continue polling until all jobs have completed. interval : int, default=10 Interval in seconds for how often to check if jobs have been completed.

Source code in earthdaily/earthone/core/compute/function.py
def as_completed(self, jobs: Iterable[Job], timeout=None, interval=10):
    """Yields jobs as they complete.

    Completion includes success, failure, timeout, and canceled.

    Can be used in any iterable context.

    Parameters
    ----------
    jobs : Iterable[Job]
        The jobs to wait for completion. Jobs must be associated with this Function.
    timeout : int, default=None
        Maximum time to wait before timing out. If not set, this will continue
        polling until all jobs have completed.
    interval : int, default=10
        Interval in seconds for how often to check if jobs have been completed.
    """
    if self.state != DocumentState.SAVED:
        raise ValueError(
            "Cannot retrieve jobs for a Function that has not been saved"
        )

    job_ids = set()
    for job in jobs:
        if job.function_id != self.id:
            raise ValueError(
                f"Job {job.id} is not associated with Function {self.id}"
            )
        job_ids.add(job.id)

    current_interval = interval
    chunk_size = MAX_FUNCTION_IDS_PER_REQUEST
    start_time = time.time()
    while job_ids:
        self.refresh()
        if self.status == FunctionStatus.BUILD_FAILED:
            raise RuntimeError(
                f"Function {self.name} failed to build. Check the build log for more details."
            )

        hits = set()
        query_ids = {job_id for job_id in job_ids}
        # refresh the job state, but only a chunk at a time
        while query_ids:
            chunk_ids = set(
                itertools.islice(query_ids, min(chunk_size, len(query_ids)))
            )
            query_ids -= chunk_ids

            for job in Job.search(client=self._client).filter(
                Job.id.in_(list(chunk_ids)) & Job.status.in_(JobStatus.terminal())
            ):
                hits.add(job.id)
                yield job

        job_ids -= hits

        if hits:
            current_interval = interval

        if timeout:
            t = timeout - (time.time() - start_time)
            if t <= 0:
                raise TimeoutError(
                    f"Function {self.name} did not complete before timeout!"
                )

            t = min(t, current_interval)
        else:
            t = current_interval

        # Don't sleep as long as we are picking up hits
        if not hits:
            time.sleep(t)

            current_interval = min(current_interval * 2, 60)

wait_for_completion 🔗

wait_for_completion(timeout=None, interval=10)

Waits until all submitted jobs for a given Function are completed.

Completion includes success, failure, timeout, and canceled.

Parameters🔗

timeout : int, default=None Maximum time to wait before timing out. If not set, this method will block indefinitely. interval : int, default=10 Interval in seconds for how often to check if jobs have been completed.

Source code in earthdaily/earthone/core/compute/function.py
def wait_for_completion(self, timeout=None, interval=10):
    """Waits until all submitted jobs for a given Function are completed.

    Completion includes success, failure, timeout, and canceled.

    Parameters
    ----------
    timeout : int, default=None
        Maximum time to wait before timing out. If not set, this method will
        block indefinitely.
    interval : int, default=10
        Interval in seconds for how often to check if jobs have been completed.
    """
    if self.state != DocumentState.SAVED:
        raise ValueError("Cannot wait for a Function that has not been saved")

    start_time = time.time()

    while True:
        self.refresh(includes=["job.statistics"])

        if self.status == FunctionStatus.BUILD_FAILED:
            raise RuntimeError(
                f"Function {self.name} failed to build. Check the build log for more details."
            )

        if self.status in [FunctionStatus.READY, FunctionStatus.STOPPED]:
            job_statistics = getattr(self, "job_statistics", {})
            if (
                job_statistics.get("pending", 0) == 0
                and job_statistics.get("running", 0) == 0
                and job_statistics.get("cancel", 0) == 0
                and job_statistics.get("canceling", 0) == 0
            ):
                break

        if timeout:
            t = timeout - (time.time() - start_time)
            if t <= 0:
                raise TimeoutError(
                    f"Function {self.name} did not complete before timeout!"
                )

            t = min(t, interval)
        else:
            t = interval

        time.sleep(t)

Job🔗

Job 🔗

Bases: Document

A single invocation of a Function.

Source code in earthdaily/earthone/core/compute/job.py
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
class Job(Document):
    """A single invocation of a Function."""

    id: str = Attribute(
        str, filterable=True, readonly=True, sortable=True, doc="The ID of the Job."
    )
    function_id: str = Attribute(
        str,
        filterable=True,
        mutable=False,
        doc="The ID of the Function the Job belongs to.",
    )
    creation_date: datetime = DatetimeAttribute(
        filterable=True,
        readonly=True,
        sortable=True,
        doc="The date the Job was created.",
    )
    args: Optional[List] = Attribute(list, doc="The arguments provided to the Job.")
    error_reason: Optional[str] = Attribute(
        str,
        readonly=True,
        doc="The reason the Job failed.",
    )
    execution_count: Optional[int] = Attribute(
        int,
        filterable=True,
        readonly=True,
        sortable=True,
        doc="The number of attempts made to execute this job.",
    )
    exit_code: Optional[int] = Attribute(
        int,
        filterable=True,
        readonly=True,
        sortable=True,
        doc="The exit code of the Job.",
    )
    kwargs: Optional[Dict[str, Any]] = Attribute(
        dict, doc="The parameters provided to the Job."
    )
    environment: Optional[Dict[str, str]] = Attribute(
        dict, doc="The environment variables provided to the Job."
    )
    last_completion_date: Optional[datetime] = DatetimeAttribute(
        filterable=True,
        readonly=True,
        sortable=True,
        doc="The date the Job was last completed or canceled.",
    )
    last_execution_date: Optional[datetime] = DatetimeAttribute(
        filterable=True,
        readonly=True,
        sortable=True,
        doc="The date the Job was last executed.",
    )
    runtime: Optional[int] = Attribute(
        int,
        filterable=True,
        readonly=True,
        sortable=True,
        doc="The time it took the Job to complete.",
    )
    status: JobStatus = Attribute(
        JobStatus,
        filterable=True,
        readonly=True,
        sortable=True,
        doc="""The current status of the Job.

        The status may occasionally need to be refreshed by calling :py:meth:`Job.refresh`
        """,
    )
    statistics: Optional[JobStatistics] = Attribute(
        JobStatistics,
        readonly=True,
        doc="""The runtime utilization statistics for the Job.

        The statistics include the cpu, memory, and network usage of the Job.
        """,
    )
    tags: List[str] = ListAttribute(
        str,
        filterable=True,
        doc="A list of tags associated with the Job.",
    )

    # Lazy attributes
    provisioning_time: Optional[int] = Attribute(
        int,
        readonly=True,
        doc=(
            "The time it took to provision the Job. This attribute will only be available "
            "if include='timings' is specified in the request by setting params.",
        ),
    )
    pull_time: Optional[int] = Attribute(
        int,
        readonly=True,
        doc=(
            "The time it took to load the user code in the Job. This attribute will only"
            " be available if include='timings' is specified in the request by setting params.",
        ),
    )

    def __init__(
        self,
        function_id: str,
        args: Optional[List] = None,
        kwargs: Optional[Dict] = None,
        client: ComputeClient = None,
        environment: Optional[Dict[str, str]] = None,
        **extra,
    ):
        """
        Parameters
        ----------
        function_id : str
            The id of the Function. A function must first be created to create a job.
        args : List, optional
            A list of positional arguments to pass to the function.
        kwargs : Dict, optional
            A dictionary of named arguments to pass to the function.
        environment : Dict[str, str], optional
            Environment variables to be set in the environment of the running Job.
            Will be merged with environment variables set on the Function, with
            the Job environment variables taking precedence.
        client: ComputeClient, optional
            The compute client to use for requests.
            If not set, the default client will be used.
        """
        self._client = client or ComputeClient.get_default_client()
        super().__init__(
            function_id=function_id,
            args=args,
            kwargs=kwargs,
            environment=environment,
            **extra,
        )

    # support use of jobs in sets
    def __hash__(self):
        return hash(self.id)

    # support use of jobs in sets
    def __eq__(self, other):
        if not isinstance(other, Job):
            return False

        return self.id == other.id

    def _get_result_namespace(self) -> str:
        """Returns the namespace for the Job result blob."""
        namespace = self._client.get_namespace(self.function_id)

        if not namespace:
            # Fetching the function from the server will set the namespace
            # during hydration in Function.__init__
            namespace = self.function.namespace

        return namespace

    @property
    def function(self) -> "Function":
        """Returns the Function the Job belongs to."""
        from .function import Function

        return Function.get(self.function_id)

    @classmethod
    def get(cls, id, client: ComputeClient = None, **params) -> "Job":
        """Retrieves the Job by id.

        Parameters
        ----------
        id : str
            The id of the Job to fetch.
        client: ComputeClient, optional
            If set, the result will be retrieved using the configured client.
            Otherwise, the default client will be used.
        include : List[str], optional
            List of additional attributes to include in the response.
            Allowed values are:

            - "timings": Include additional debugging timing information about the Job.

        Example
        -------
        >>> from earthdaily.earthone.compute import Job
        >>> job = Job.get(<job-id>)
        Job <job-id>: pending
        """
        client = client or ComputeClient.get_default_client()
        response = client.session.get(f"/jobs/{id}", params=params)
        return cls(**response.json(), client=client, saved=True)

    @classmethod
    def list(
        cls, page_size: int = 100, client: ComputeClient = None, **params
    ) -> JobSearch:
        """Retrieves an iterable of all jobs matching the given parameters.

        If you would like to filter Jobs, use :py:meth:`Job.search`.

        Parameters
        ----------
        page_size : int, default=100
            Maximum number of results per page.
        client: ComputeClient, optional
            If set, the result will be retrieved using the configured client.
            Otherwise, the default client will be used.

        Example
        -------
        >>> from earthdaily.earthone.compute import Job
        >>> fn = Job.list(<function_id>)
        [Job <job-id1>: pending, Job <job-id2>: pending, Job <job-id3>: pending]
        """
        params = {"page_size": page_size, **params}
        search = Job.search(client=client).param(**params)

        # Deprecation: remove this in a future release
        if "function_id" in params or "status" in params:
            examples = []

            if "function_id" in params:
                examples.append(f"Job.function_id == '{params['function_id']}'")

            if "status" in params:
                if not isinstance(params["status"], list):
                    params["status"] = [params["status"]]

                examples.append(f"Job.status.in_({params['status']})")

            warnings.warn(
                "The `function_id` parameter is deprecated. "
                "Use `Job.search().filter({})` instead.".format(" & ".join(examples))
            )

        return search

    def cancel(self):
        """Cancels the Job.

        If the Job is already canceled or completed, this will do nothing.

        If the Job is still pending, it will be canceled immediately.

        If the job is running, it will be canceled as soon as possible. However, it may
        complete before the cancel request is processed.
        """
        if self.state != DocumentState.SAVED:
            raise ValueError("Cannot cancel a Job that has not been saved")

        response = self._client.session.post(f"/jobs/{self.id}/cancel")
        self._load_from_remote(response.json())

    def delete(self, delete_result: bool = False):
        """Deletes the Job.

        Also deletes any job log blob for the job. Use `delete_result=True` to delete the
        job result blob as well.

        Parameters
        ----------
        delete_result : bool, False
            If set, the result of the job will also be deleted.
        """
        if self.state == DocumentState.NEW:
            raise ValueError("Cannot delete a Job that has not been saved")

        self._client.session.delete(f"/jobs/{self.id}?delete_results={delete_result}")
        self._deleted = True

    def refresh(self, client: ComputeClient = None) -> None:
        """Update the Job instance with the latest information from the server.

        Parameters
        ----------
        client: ComputeClient, optional
            If set, the result will be retrieved using the configured client.
            Otherwise, the default client will be used.
        """
        if self.pull_time or self.provisioning_time:
            params = {"include": ["timings"]}
        else:
            params = {}

        response = self._client.session.get(f"/jobs/{self.id}", params=params)
        self._load_from_remote(response.json())

    def result(
        self,
        cast_type: Optional[Type[Serializable]] = None,
        catalog_client: CatalogClient = None,
    ):
        """Retrieves the result of the Job.

        Parameters
        ----------
        cast_type: Type[Serializable], None
            If set, the result will be deserialized to the given type.
        catalog_client: CatalogClient, None
            If set, the result will be retrieved using the configured catalog client.
            Otherwise, the default catalog client will be used.

        Raises
        ------
        ValueError
            When job has not completed successfully or
            when `cast_type` does not implement Serializable.
        """
        if self.status != JobStatus.SUCCESS:
            # just check if maybe it is meanwhile done.
            self.refresh()
            if self.status != JobStatus.SUCCESS:
                if self.status in JobStatus.terminal():
                    raise ValueError(
                        f"Job {self.id} has not completed successfully, status is {self.status}"
                    )
                else:
                    raise ValueError(
                        f"Job {self.id} has not completed, status is {self.status}. "
                        "Please wait for the job to complete."
                    )

        if not catalog_client:
            catalog_client = self._client.catalog_client

        try:
            namespace = self._get_result_namespace()
            result = Blob.get_data(
                id=f"{StorageType.COMPUTE}/{namespace}/{self.function_id}/{self.id}",
                client=catalog_client,
            )
        except NotFoundError:
            return None
        except ValueError:
            raise
        except DeletedObjectError:
            raise

        if not result:
            return None

        if cast_type:
            deserialize = getattr(cast_type, "deserialize", None)

            if deserialize and callable(deserialize):
                return deserialize(result)
            else:
                raise ValueError(f"Type {cast_type} must implement Serializable.")

        try:
            return json.loads(result)
        except Exception:
            return result

    def result_blob(
        self,
        catalog_client: CatalogClient = None,
    ):
        """Retrieves the Catalog Blob holding the result of the Job.

        If there is no result Blob, `None` will be returned.

        Parameters
        ----------
        catalog_client: CatalogClient, None
            If set, the result will be retrieved using the configured client.
            Otherwise, the default client will be used.

        Raises
        ------
        ValueError
            When job has not completed successfully or
            when `cast_type` does not implement Serializable.
        """
        if self.status != JobStatus.SUCCESS:
            # just check if maybe it is meanwhile done.
            self.refresh()
            if self.status != JobStatus.SUCCESS:
                if self.status in JobStatus.terminal():
                    raise ValueError(
                        f"Job {self.id} has not completed successfully, status is {self.status}"
                    )
                else:
                    raise ValueError(
                        f"Job {self.id} has not completed, status is {self.status}. "
                        "Please wait for the job to complete."
                    )

        if not catalog_client:
            catalog_client = self._client.catalog_client

        return Blob.get(
            name=f"{self.function_id}/{self.id}",
            namespace=self._get_result_namespace(),
            storage_type=StorageType.COMPUTE,
            client=catalog_client,
        )

    @classmethod
    def search(cls, client: ComputeClient = None) -> JobSearch:
        """Creates a search for Jobs.

        The search is lazy and will be executed when the search is iterated over or
        :py:meth:`Search.collect` is called.

        Parameters
        ----------
        client: ComputeClient, optional
            If set, the result will be retrieved using the configured client.
            Otherwise, the default client will be used.

        Example
        -------
        >>> from earthdaily.earthone.compute import Job, JobStatus
        >>> jobs: List[Job] = Job.search().filter(Job.status == JobStatus.SUCCESS).collect()
        Collection([Job <job-id1>: success, <job-id2>: success])
        """
        client = client or ComputeClient.get_default_client()
        return JobSearch(Job, client, url="/jobs")

    def wait_for_completion(self, timeout=None, interval=10):
        """Waits until the Job is completed.

        Parameters
        ----------
        timeout : int, default=None
            Maximum time to wait before timing out.
            If not set, the call will block until job completion.
        interval : int, default=10
            Interval in seconds for how often to check if jobs have been completed.
        """
        start_time = time.time()

        while True:
            self.refresh()

            if self.status in JobStatus.terminal():
                break

            if timeout:
                t = timeout - (time.time() - start_time)
                if t <= 0:
                    raise TimeoutError(
                        f"Job {self.id} did not complete before timeout!"
                    )

                t = min(t, interval)
            else:
                t = interval

            time.sleep(t)

    def save(self):
        """Creates the Job if it does not already exist.

        If the job already exists, it will be updated on the server if modifications
        were made to the Job instance.
        """
        if self.state == DocumentState.SAVED:
            return

        if self.state == DocumentState.MODIFIED:
            response = self._client.session.patch(
                f"/jobs/{self.id}", json=self.to_dict(only_modified=True)
            )
        elif self.state == DocumentState.NEW:
            response = self._client.session.post(
                "/jobs", json=self.to_dict(exclude_none=True)
            )
        else:
            raise ValueError(
                f"Unexpected Job state {self.state}."
                f'Reload the job from the server: Job.get("{self.id}")'
            )

        self._load_from_remote(response.json())

    def iter_log(self, timestamps: bool = True):
        """Retrieves the log for the job, returning an iterator over the lines.

        Parameters
        ----------
        timestamps : bool, True
            If set, log timestamps will be included and converted to the users system
            timezone from UTC.

            You may consider disabling this if you use a structured logger.
        """
        return self._client.iter_log_lines(
            f"/jobs/{self.id}/log", timestamps=timestamps
        )

    def log(self, timestamps: bool = True):
        """Retrieves the log for the job, returning a string.

        As logs can potentially be unbounded, consider using :py:meth:`Job.iter_log`.

        Parameters
        ----------
        timestamps : bool, True
            If set, log timestamps will be included and converted to the users system
            timezone from UTC.

            You may consider disabling this if you use a structured logger.
        """
        return "\n".join(self.iter_log(timestamps=timestamps))

function property 🔗

function: Function

Returns the Function the Job belongs to.

__init__ 🔗

__init__(function_id: str, args: Optional[List] = None, kwargs: Optional[Dict] = None, client: ComputeClient = None, environment: Optional[Dict[str, str]] = None, **extra)
Parameters🔗

function_id : str The id of the Function. A function must first be created to create a job. args : List, optional A list of positional arguments to pass to the function. kwargs : Dict, optional A dictionary of named arguments to pass to the function. environment : Dict[str, str], optional Environment variables to be set in the environment of the running Job. Will be merged with environment variables set on the Function, with the Job environment variables taking precedence. client: ComputeClient, optional The compute client to use for requests. If not set, the default client will be used.

Source code in earthdaily/earthone/core/compute/job.py
def __init__(
    self,
    function_id: str,
    args: Optional[List] = None,
    kwargs: Optional[Dict] = None,
    client: ComputeClient = None,
    environment: Optional[Dict[str, str]] = None,
    **extra,
):
    """
    Parameters
    ----------
    function_id : str
        The id of the Function. A function must first be created to create a job.
    args : List, optional
        A list of positional arguments to pass to the function.
    kwargs : Dict, optional
        A dictionary of named arguments to pass to the function.
    environment : Dict[str, str], optional
        Environment variables to be set in the environment of the running Job.
        Will be merged with environment variables set on the Function, with
        the Job environment variables taking precedence.
    client: ComputeClient, optional
        The compute client to use for requests.
        If not set, the default client will be used.
    """
    self._client = client or ComputeClient.get_default_client()
    super().__init__(
        function_id=function_id,
        args=args,
        kwargs=kwargs,
        environment=environment,
        **extra,
    )

get classmethod 🔗

get(id, client: ComputeClient = None, **params) -> Job

Retrieves the Job by id.

Parameters🔗

id : str The id of the Job to fetch. client: ComputeClient, optional If set, the result will be retrieved using the configured client. Otherwise, the default client will be used. include : List[str], optional List of additional attributes to include in the response. Allowed values are:

- "timings": Include additional debugging timing information about the Job.
Example🔗

from earthdaily.earthone.compute import Job job = Job.get() Job : pending

Source code in earthdaily/earthone/core/compute/job.py
@classmethod
def get(cls, id, client: ComputeClient = None, **params) -> "Job":
    """Retrieves the Job by id.

    Parameters
    ----------
    id : str
        The id of the Job to fetch.
    client: ComputeClient, optional
        If set, the result will be retrieved using the configured client.
        Otherwise, the default client will be used.
    include : List[str], optional
        List of additional attributes to include in the response.
        Allowed values are:

        - "timings": Include additional debugging timing information about the Job.

    Example
    -------
    >>> from earthdaily.earthone.compute import Job
    >>> job = Job.get(<job-id>)
    Job <job-id>: pending
    """
    client = client or ComputeClient.get_default_client()
    response = client.session.get(f"/jobs/{id}", params=params)
    return cls(**response.json(), client=client, saved=True)

list classmethod 🔗

list(page_size: int = 100, client: ComputeClient = None, **params) -> JobSearch

Retrieves an iterable of all jobs matching the given parameters.

If you would like to filter Jobs, use 🇵🇾meth:Job.search.

Parameters🔗

page_size : int, default=100 Maximum number of results per page. client: ComputeClient, optional If set, the result will be retrieved using the configured client. Otherwise, the default client will be used.

Example🔗

from earthdaily.earthone.compute import Job fn = Job.list() [Job : pending, Job : pending, Job : pending]

Source code in earthdaily/earthone/core/compute/job.py
@classmethod
def list(
    cls, page_size: int = 100, client: ComputeClient = None, **params
) -> JobSearch:
    """Retrieves an iterable of all jobs matching the given parameters.

    If you would like to filter Jobs, use :py:meth:`Job.search`.

    Parameters
    ----------
    page_size : int, default=100
        Maximum number of results per page.
    client: ComputeClient, optional
        If set, the result will be retrieved using the configured client.
        Otherwise, the default client will be used.

    Example
    -------
    >>> from earthdaily.earthone.compute import Job
    >>> fn = Job.list(<function_id>)
    [Job <job-id1>: pending, Job <job-id2>: pending, Job <job-id3>: pending]
    """
    params = {"page_size": page_size, **params}
    search = Job.search(client=client).param(**params)

    # Deprecation: remove this in a future release
    if "function_id" in params or "status" in params:
        examples = []

        if "function_id" in params:
            examples.append(f"Job.function_id == '{params['function_id']}'")

        if "status" in params:
            if not isinstance(params["status"], list):
                params["status"] = [params["status"]]

            examples.append(f"Job.status.in_({params['status']})")

        warnings.warn(
            "The `function_id` parameter is deprecated. "
            "Use `Job.search().filter({})` instead.".format(" & ".join(examples))
        )

    return search

cancel 🔗

cancel()

Cancels the Job.

If the Job is already canceled or completed, this will do nothing.

If the Job is still pending, it will be canceled immediately.

If the job is running, it will be canceled as soon as possible. However, it may complete before the cancel request is processed.

Source code in earthdaily/earthone/core/compute/job.py
def cancel(self):
    """Cancels the Job.

    If the Job is already canceled or completed, this will do nothing.

    If the Job is still pending, it will be canceled immediately.

    If the job is running, it will be canceled as soon as possible. However, it may
    complete before the cancel request is processed.
    """
    if self.state != DocumentState.SAVED:
        raise ValueError("Cannot cancel a Job that has not been saved")

    response = self._client.session.post(f"/jobs/{self.id}/cancel")
    self._load_from_remote(response.json())

delete 🔗

delete(delete_result: bool = False)

Deletes the Job.

Also deletes any job log blob for the job. Use delete_result=True to delete the job result blob as well.

Parameters🔗

delete_result : bool, False If set, the result of the job will also be deleted.

Source code in earthdaily/earthone/core/compute/job.py
def delete(self, delete_result: bool = False):
    """Deletes the Job.

    Also deletes any job log blob for the job. Use `delete_result=True` to delete the
    job result blob as well.

    Parameters
    ----------
    delete_result : bool, False
        If set, the result of the job will also be deleted.
    """
    if self.state == DocumentState.NEW:
        raise ValueError("Cannot delete a Job that has not been saved")

    self._client.session.delete(f"/jobs/{self.id}?delete_results={delete_result}")
    self._deleted = True

refresh 🔗

refresh(client: ComputeClient = None) -> None

Update the Job instance with the latest information from the server.

Parameters🔗

client: ComputeClient, optional If set, the result will be retrieved using the configured client. Otherwise, the default client will be used.

Source code in earthdaily/earthone/core/compute/job.py
def refresh(self, client: ComputeClient = None) -> None:
    """Update the Job instance with the latest information from the server.

    Parameters
    ----------
    client: ComputeClient, optional
        If set, the result will be retrieved using the configured client.
        Otherwise, the default client will be used.
    """
    if self.pull_time or self.provisioning_time:
        params = {"include": ["timings"]}
    else:
        params = {}

    response = self._client.session.get(f"/jobs/{self.id}", params=params)
    self._load_from_remote(response.json())

result 🔗

result(cast_type: Optional[Type[Serializable]] = None, catalog_client: CatalogClient = None)

Retrieves the result of the Job.

Parameters🔗

cast_type: Type[Serializable], None If set, the result will be deserialized to the given type. catalog_client: CatalogClient, None If set, the result will be retrieved using the configured catalog client. Otherwise, the default catalog client will be used.

Raises🔗

ValueError When job has not completed successfully or when cast_type does not implement Serializable.

Source code in earthdaily/earthone/core/compute/job.py
def result(
    self,
    cast_type: Optional[Type[Serializable]] = None,
    catalog_client: CatalogClient = None,
):
    """Retrieves the result of the Job.

    Parameters
    ----------
    cast_type: Type[Serializable], None
        If set, the result will be deserialized to the given type.
    catalog_client: CatalogClient, None
        If set, the result will be retrieved using the configured catalog client.
        Otherwise, the default catalog client will be used.

    Raises
    ------
    ValueError
        When job has not completed successfully or
        when `cast_type` does not implement Serializable.
    """
    if self.status != JobStatus.SUCCESS:
        # just check if maybe it is meanwhile done.
        self.refresh()
        if self.status != JobStatus.SUCCESS:
            if self.status in JobStatus.terminal():
                raise ValueError(
                    f"Job {self.id} has not completed successfully, status is {self.status}"
                )
            else:
                raise ValueError(
                    f"Job {self.id} has not completed, status is {self.status}. "
                    "Please wait for the job to complete."
                )

    if not catalog_client:
        catalog_client = self._client.catalog_client

    try:
        namespace = self._get_result_namespace()
        result = Blob.get_data(
            id=f"{StorageType.COMPUTE}/{namespace}/{self.function_id}/{self.id}",
            client=catalog_client,
        )
    except NotFoundError:
        return None
    except ValueError:
        raise
    except DeletedObjectError:
        raise

    if not result:
        return None

    if cast_type:
        deserialize = getattr(cast_type, "deserialize", None)

        if deserialize and callable(deserialize):
            return deserialize(result)
        else:
            raise ValueError(f"Type {cast_type} must implement Serializable.")

    try:
        return json.loads(result)
    except Exception:
        return result

result_blob 🔗

result_blob(catalog_client: CatalogClient = None)

Retrieves the Catalog Blob holding the result of the Job.

If there is no result Blob, None will be returned.

Parameters🔗

catalog_client: CatalogClient, None If set, the result will be retrieved using the configured client. Otherwise, the default client will be used.

Raises🔗

ValueError When job has not completed successfully or when cast_type does not implement Serializable.

Source code in earthdaily/earthone/core/compute/job.py
def result_blob(
    self,
    catalog_client: CatalogClient = None,
):
    """Retrieves the Catalog Blob holding the result of the Job.

    If there is no result Blob, `None` will be returned.

    Parameters
    ----------
    catalog_client: CatalogClient, None
        If set, the result will be retrieved using the configured client.
        Otherwise, the default client will be used.

    Raises
    ------
    ValueError
        When job has not completed successfully or
        when `cast_type` does not implement Serializable.
    """
    if self.status != JobStatus.SUCCESS:
        # just check if maybe it is meanwhile done.
        self.refresh()
        if self.status != JobStatus.SUCCESS:
            if self.status in JobStatus.terminal():
                raise ValueError(
                    f"Job {self.id} has not completed successfully, status is {self.status}"
                )
            else:
                raise ValueError(
                    f"Job {self.id} has not completed, status is {self.status}. "
                    "Please wait for the job to complete."
                )

    if not catalog_client:
        catalog_client = self._client.catalog_client

    return Blob.get(
        name=f"{self.function_id}/{self.id}",
        namespace=self._get_result_namespace(),
        storage_type=StorageType.COMPUTE,
        client=catalog_client,
    )

search classmethod 🔗

search(client: ComputeClient = None) -> JobSearch

Creates a search for Jobs.

The search is lazy and will be executed when the search is iterated over or 🇵🇾meth:Search.collect is called.

Parameters🔗

client: ComputeClient, optional If set, the result will be retrieved using the configured client. Otherwise, the default client will be used.

Example🔗

from earthdaily.earthone.compute import Job, JobStatus jobs: List[Job] = Job.search().filter(Job.status == JobStatus.SUCCESS).collect() Collection([Job : success, : success])

Source code in earthdaily/earthone/core/compute/job.py
@classmethod
def search(cls, client: ComputeClient = None) -> JobSearch:
    """Creates a search for Jobs.

    The search is lazy and will be executed when the search is iterated over or
    :py:meth:`Search.collect` is called.

    Parameters
    ----------
    client: ComputeClient, optional
        If set, the result will be retrieved using the configured client.
        Otherwise, the default client will be used.

    Example
    -------
    >>> from earthdaily.earthone.compute import Job, JobStatus
    >>> jobs: List[Job] = Job.search().filter(Job.status == JobStatus.SUCCESS).collect()
    Collection([Job <job-id1>: success, <job-id2>: success])
    """
    client = client or ComputeClient.get_default_client()
    return JobSearch(Job, client, url="/jobs")

wait_for_completion 🔗

wait_for_completion(timeout=None, interval=10)

Waits until the Job is completed.

Parameters🔗

timeout : int, default=None Maximum time to wait before timing out. If not set, the call will block until job completion. interval : int, default=10 Interval in seconds for how often to check if jobs have been completed.

Source code in earthdaily/earthone/core/compute/job.py
def wait_for_completion(self, timeout=None, interval=10):
    """Waits until the Job is completed.

    Parameters
    ----------
    timeout : int, default=None
        Maximum time to wait before timing out.
        If not set, the call will block until job completion.
    interval : int, default=10
        Interval in seconds for how often to check if jobs have been completed.
    """
    start_time = time.time()

    while True:
        self.refresh()

        if self.status in JobStatus.terminal():
            break

        if timeout:
            t = timeout - (time.time() - start_time)
            if t <= 0:
                raise TimeoutError(
                    f"Job {self.id} did not complete before timeout!"
                )

            t = min(t, interval)
        else:
            t = interval

        time.sleep(t)

save 🔗

save()

Creates the Job if it does not already exist.

If the job already exists, it will be updated on the server if modifications were made to the Job instance.

Source code in earthdaily/earthone/core/compute/job.py
def save(self):
    """Creates the Job if it does not already exist.

    If the job already exists, it will be updated on the server if modifications
    were made to the Job instance.
    """
    if self.state == DocumentState.SAVED:
        return

    if self.state == DocumentState.MODIFIED:
        response = self._client.session.patch(
            f"/jobs/{self.id}", json=self.to_dict(only_modified=True)
        )
    elif self.state == DocumentState.NEW:
        response = self._client.session.post(
            "/jobs", json=self.to_dict(exclude_none=True)
        )
    else:
        raise ValueError(
            f"Unexpected Job state {self.state}."
            f'Reload the job from the server: Job.get("{self.id}")'
        )

    self._load_from_remote(response.json())

iter_log 🔗

iter_log(timestamps: bool = True)

Retrieves the log for the job, returning an iterator over the lines.

Parameters🔗

timestamps : bool, True If set, log timestamps will be included and converted to the users system timezone from UTC.

You may consider disabling this if you use a structured logger.
Source code in earthdaily/earthone/core/compute/job.py
def iter_log(self, timestamps: bool = True):
    """Retrieves the log for the job, returning an iterator over the lines.

    Parameters
    ----------
    timestamps : bool, True
        If set, log timestamps will be included and converted to the users system
        timezone from UTC.

        You may consider disabling this if you use a structured logger.
    """
    return self._client.iter_log_lines(
        f"/jobs/{self.id}/log", timestamps=timestamps
    )

log 🔗

log(timestamps: bool = True)

Retrieves the log for the job, returning a string.

As logs can potentially be unbounded, consider using 🇵🇾meth:Job.iter_log.

Parameters🔗

timestamps : bool, True If set, log timestamps will be included and converted to the users system timezone from UTC.

You may consider disabling this if you use a structured logger.
Source code in earthdaily/earthone/core/compute/job.py
def log(self, timestamps: bool = True):
    """Retrieves the log for the job, returning a string.

    As logs can potentially be unbounded, consider using :py:meth:`Job.iter_log`.

    Parameters
    ----------
    timestamps : bool, True
        If set, log timestamps will be included and converted to the users system
        timezone from UTC.

        You may consider disabling this if you use a structured logger.
    """
    return "\n".join(self.iter_log(timestamps=timestamps))

ComputeResult🔗

ComputeResult 🔗

Source code in earthdaily/earthone/core/compute/result.py
class ComputeResult:
    def __init__(
        self,
        value: Optional[AnyResult] = None,
        description: Optional[str] = None,
        expires: Optional[AnyDate] = None,
        extra_properties: Optional[AnyExtraProperties] = None,
        geometry: Optional[AnyGeometry] = None,
        tags: Optional[AnyTags] = None,
    ):
        """Used to store the result of a compute function with additional attributes.

        When returned from a compute function, the result will be serialized and stored
        in the Storage service with the given attributes.

        Notes
        -----
        Results that are None and have no attributes will not be stored. If you want to
        store a None result with attributes, you can do so by passing in a None value
        as well as any attributes you wish to set.

        Examples
        --------
        Result with raw binary data:
        >>> from earthdaily.earthone.compute import ComputeResult
        >>> result = ComputeResult(value=b"result", description="result description")

        Null result with attributes:
        >>> from earthdaily.earthone.compute import ComputeResult
        >>> result = ComputeResult(None, geometry=geometry, tags=["tag1", "tag2"])

        Parameters
        ----------
        value: bytes, Serializable, or Any
            The resulting value of a compute function.
            This can be any bytes, any JSON serializable type or any type implementing
            the Serializable interface.
        description: str or None
            A description with further details on this result blob. The description can be
            up to 80,000 characters and is used by :py:meth:`Search.find_text`.
        expires: datetime, str, or None
            The date the result should expire and be deleted from storage.
            If a string is given, it must be in ISO 8601 format.
        extra_properties: dict or None
            A dictionary of up to 50 key/value pairs.

            The keys of this dictionary must be strings, and the values of this dictionary
            can be strings or numbers.  This allows for more structured custom metadata
            to be associated with objects.
        geometry: shapely.geometry.base.BaseGeometry, dict, str, or None
            The geometry associated with the result if any.
        tags: set, list, or None
            The tags to set on the catalog object for the result.
        """
        type_ = type(value)

        # The result is null and should not be stored if all attributes are null
        # otherwise, we'll allow a user to store a null result with attributes.
        self.isnull = (
            value is None
            and description is None
            and expires is None
            and extra_properties is None
            and geometry is None
            and tags is None
        )

        # If the result is already bytes
        if isinstance(value, bytes):
            value = value
        # If the user implements serialize
        elif callable(getattr(value, "serialize", None)):
            value = value.serialize()

            if not isinstance(value, bytes):
                raise Exception(
                    f"Serializer on {type_} must return bytes got {type(value)}"
                )
        # No specific serialize implementation try json
        else:
            try:
                value = json.dumps(value).encode()
            except Exception:
                raise Exception(
                    "Unable to serialize result. Return value must be"
                    " JSON encodable or implement the Serializable interface"
                ) from None

        self.value = value
        self.description = description
        self.expires = expires
        self.extra_properties = extra_properties
        self.geometry = geometry
        self.tags = tags

__init__ 🔗

__init__(value: Optional[AnyResult] = None, description: Optional[str] = None, expires: Optional[AnyDate] = None, extra_properties: Optional[AnyExtraProperties] = None, geometry: Optional[AnyGeometry] = None, tags: Optional[AnyTags] = None)

Used to store the result of a compute function with additional attributes.

When returned from a compute function, the result will be serialized and stored in the Storage service with the given attributes.

Notes🔗

Results that are None and have no attributes will not be stored. If you want to store a None result with attributes, you can do so by passing in a None value as well as any attributes you wish to set.

Examples🔗

Result with raw binary data:

from earthdaily.earthone.compute import ComputeResult result = ComputeResult(value=b"result", description="result description")

Null result with attributes:

from earthdaily.earthone.compute import ComputeResult result = ComputeResult(None, geometry=geometry, tags=["tag1", "tag2"])

Parameters🔗

value: bytes, Serializable, or Any The resulting value of a compute function. This can be any bytes, any JSON serializable type or any type implementing the Serializable interface. description: str or None A description with further details on this result blob. The description can be up to 80,000 characters and is used by 🇵🇾meth:Search.find_text. expires: datetime, str, or None The date the result should expire and be deleted from storage. If a string is given, it must be in ISO 8601 format. extra_properties: dict or None A dictionary of up to 50 key/value pairs.

The keys of this dictionary must be strings, and the values of this dictionary
can be strings or numbers.  This allows for more structured custom metadata
to be associated with objects.

geometry: shapely.geometry.base.BaseGeometry, dict, str, or None The geometry associated with the result if any. tags: set, list, or None The tags to set on the catalog object for the result.

Source code in earthdaily/earthone/core/compute/result.py
def __init__(
    self,
    value: Optional[AnyResult] = None,
    description: Optional[str] = None,
    expires: Optional[AnyDate] = None,
    extra_properties: Optional[AnyExtraProperties] = None,
    geometry: Optional[AnyGeometry] = None,
    tags: Optional[AnyTags] = None,
):
    """Used to store the result of a compute function with additional attributes.

    When returned from a compute function, the result will be serialized and stored
    in the Storage service with the given attributes.

    Notes
    -----
    Results that are None and have no attributes will not be stored. If you want to
    store a None result with attributes, you can do so by passing in a None value
    as well as any attributes you wish to set.

    Examples
    --------
    Result with raw binary data:
    >>> from earthdaily.earthone.compute import ComputeResult
    >>> result = ComputeResult(value=b"result", description="result description")

    Null result with attributes:
    >>> from earthdaily.earthone.compute import ComputeResult
    >>> result = ComputeResult(None, geometry=geometry, tags=["tag1", "tag2"])

    Parameters
    ----------
    value: bytes, Serializable, or Any
        The resulting value of a compute function.
        This can be any bytes, any JSON serializable type or any type implementing
        the Serializable interface.
    description: str or None
        A description with further details on this result blob. The description can be
        up to 80,000 characters and is used by :py:meth:`Search.find_text`.
    expires: datetime, str, or None
        The date the result should expire and be deleted from storage.
        If a string is given, it must be in ISO 8601 format.
    extra_properties: dict or None
        A dictionary of up to 50 key/value pairs.

        The keys of this dictionary must be strings, and the values of this dictionary
        can be strings or numbers.  This allows for more structured custom metadata
        to be associated with objects.
    geometry: shapely.geometry.base.BaseGeometry, dict, str, or None
        The geometry associated with the result if any.
    tags: set, list, or None
        The tags to set on the catalog object for the result.
    """
    type_ = type(value)

    # The result is null and should not be stored if all attributes are null
    # otherwise, we'll allow a user to store a null result with attributes.
    self.isnull = (
        value is None
        and description is None
        and expires is None
        and extra_properties is None
        and geometry is None
        and tags is None
    )

    # If the result is already bytes
    if isinstance(value, bytes):
        value = value
    # If the user implements serialize
    elif callable(getattr(value, "serialize", None)):
        value = value.serialize()

        if not isinstance(value, bytes):
            raise Exception(
                f"Serializer on {type_} must return bytes got {type(value)}"
            )
    # No specific serialize implementation try json
    else:
        try:
            value = json.dumps(value).encode()
        except Exception:
            raise Exception(
                "Unable to serialize result. Return value must be"
                " JSON encodable or implement the Serializable interface"
            ) from None

    self.value = value
    self.description = description
    self.expires = expires
    self.extra_properties = extra_properties
    self.geometry = geometry
    self.tags = tags