Tasks¶
Service for managing long-running operations (tasks).
Provides utilities to poll and wait for async operations like merges.
Example
Start a merge operation¶
task_url = client.companies.merge(primary_id, duplicate_id)
Wait for completion with timeout¶
task = client.tasks.wait(task_url, timeout=60.0) if task.status == "success": print("Merge completed!")
Source code in affinity/services/tasks.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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 | |
get(task_url: str) -> MergeTask
¶
Get the current status of a task.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task_url
|
str
|
The task URL returned from an async operation |
required |
Returns:
| Type | Description |
|---|---|
MergeTask
|
MergeTask with current status |
Source code in affinity/services/tasks.py
50 51 52 53 54 55 56 57 58 59 60 61 62 | |
wait(task_url: str, *, timeout: float = 300.0, poll_interval: float = 2.0, max_poll_interval: float = 30.0) -> MergeTask
¶
Wait for a task to complete with exponential backoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task_url
|
str
|
The task URL returned from an async operation |
required |
timeout
|
float
|
Maximum time to wait in seconds (default: 5 minutes) |
300.0
|
poll_interval
|
float
|
Initial polling interval in seconds |
2.0
|
max_poll_interval
|
float
|
Maximum polling interval after backoff |
30.0
|
Returns:
| Type | Description |
|---|---|
MergeTask
|
MergeTask with final status |
Raises:
| Type | Description |
|---|---|
TimeoutError
|
If task doesn't complete within timeout |
AffinityError
|
If task fails |
Source code in affinity/services/tasks.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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 | |
Async version of TaskService.
Example
Start a merge operation¶
task_url = await client.companies.merge(primary_id, duplicate_id)
Wait for completion with timeout¶
task = await client.tasks.wait(task_url, timeout=60.0)
Source code in affinity/services/tasks.py
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 | |
get(task_url: str) -> MergeTask
async
¶
Get the current status of a task.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task_url
|
str
|
The task URL returned from an async operation |
required |
Returns:
| Type | Description |
|---|---|
MergeTask
|
MergeTask with current status |
Source code in affinity/services/tasks.py
131 132 133 134 135 136 137 138 139 140 141 142 | |
wait(task_url: str, *, timeout: float = 300.0, poll_interval: float = 2.0, max_poll_interval: float = 30.0) -> MergeTask
async
¶
Wait for a task to complete with exponential backoff.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task_url
|
str
|
The task URL returned from an async operation |
required |
timeout
|
float
|
Maximum time to wait in seconds (default: 5 minutes) |
300.0
|
poll_interval
|
float
|
Initial polling interval in seconds |
2.0
|
max_poll_interval
|
float
|
Maximum polling interval after backoff |
30.0
|
Returns:
| Type | Description |
|---|---|
MergeTask
|
MergeTask with final status |
Raises:
| Type | Description |
|---|---|
TimeoutError
|
If task doesn't complete within timeout |
AffinityError
|
If task fails |
Source code in affinity/services/tasks.py
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 | |