Search Configuration¶
Analyzer, synonym, and configuration resources that control how a SearchIndex builds its OpenSearch index.
API reference¶
synapseclient.models.SearchConfiguration
dataclass
¶
Bases: OrgScopedResource
Bundles the index-wide default analyzer and per-column overrides used to build a SearchIndex.
A SearchConfiguration belongs to an Organization, referenced by
organization_name. Find an Organization you already have access to with
synapseclient.models.organization.list_organizations(), or create one with
synapseclient.models.Organization before creating a SearchConfiguration.
Represents a Synapse SearchConfiguration.
Note: SearchConfiguration has no delete endpoint on the Synapse REST API.
Once created, it cannot be removed, and its owning Organization can no
longer be deleted either. Choose organization_name and name deliberately.
Create a SearchConfiguration.
from synapseclient import Synapse
from synapseclient.models import SearchConfiguration
syn = Synapse()
syn.login()
config = SearchConfiguration(
organization_name="my.existing.organization",
name="default_config",
description="Default search configuration for this project's indexes",
# Reference a previously-created TextAnalyzer by its qualified name...
default_analyzer={"$ref": "my.existing.organization-stemmed_english"},
)
config = config.store()
print(f"Created SearchConfiguration: {config.id} ({config.qualified_name})")
Get an existing SearchConfiguration by ID.
from synapseclient import Synapse
from synapseclient.models import SearchConfiguration
syn = Synapse()
syn.login()
config = SearchConfiguration(id="12345").get()
print(config.name, config.default_analyzer)
Update an existing SearchConfiguration.
from synapseclient import Synapse
from synapseclient.models import SearchConfiguration
syn = Synapse()
syn.login()
config = SearchConfiguration(id="12345").get()
config.column_analyzer_overrides.append(
{"$ref": "my.existing.organization-abstract_overrides"}
)
config = config.store()
print(f"Updated SearchConfiguration etag: {config.etag}")
List SearchConfigurations in an Organization.
from synapseclient import Synapse
from synapseclient.models import SearchConfiguration
syn = Synapse()
syn.login()
configs = SearchConfiguration.list(organization_name="my.existing.organization")
for config in configs:
print(config.id, config.qualified_name)
Source code in synapseclient/models/search_management.py
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 | |
Methods:¶
store
¶
Create this resource, or update it if it already has an ID.
Source code in synapseclient/models/search_management.py
90 91 92 | |
get
¶
Fetch this resource from Synapse by its ID.
Source code in synapseclient/models/search_management.py
94 95 96 | |
list
¶
list(organization_name: Optional[str] = None, *, synapse_client: Optional[Synapse] = None) -> List[Self]
List resources of this type, optionally filtered by organization.
Source code in synapseclient/models/search_management.py
98 99 100 101 102 103 104 105 | |
synapseclient.models.TextAnalyzer
dataclass
¶
Bases: OrgScopedResource
A shareable, named OpenSearch custom analyzer. Used to configure how text is tokenized for a search index.
A TextAnalyzer belongs to an Organization, referenced by organization_name.
Find an Organization you already have access to with
synapseclient.models.organization.list_organizations(), or create one with
synapseclient.models.Organization before creating a TextAnalyzer.
Represents a Synapse TextAnalyzer.
Note: TextAnalyzer has no delete endpoint on the Synapse REST API. Once
created, it cannot be removed, and its owning Organization can no longer be
deleted either. Choose organization_name and name deliberately.
Create a TextAnalyzer.
from synapseclient import Synapse
from synapseclient.models import TextAnalyzer
syn = Synapse()
syn.login()
analyzer = TextAnalyzer(
organization_name="my.existing.organization",
name="stemmed_english",
description="English analyzer with stemming and lowercase filtering",
settings={
"analyzer": {
"default": {
"type": "custom",
"tokenizer": "standard",
"filter": ["lowercase", "porter_stem"],
}
}
},
)
analyzer = analyzer.store()
print(f"Created TextAnalyzer: {analyzer.id} ({analyzer.qualified_name})")
Get an existing TextAnalyzer by ID.
from synapseclient import Synapse
from synapseclient.models import TextAnalyzer
syn = Synapse()
syn.login()
analyzer = TextAnalyzer(id="12345").get()
print(analyzer.name, analyzer.settings)
Update an existing TextAnalyzer.
from synapseclient import Synapse
from synapseclient.models import TextAnalyzer
syn = Synapse()
syn.login()
analyzer = TextAnalyzer(id="12345").get()
analyzer.description = "Updated description"
analyzer.settings["analyzer"]["default"]["filter"].append("asciifolding")
analyzer = analyzer.store()
print(f"Updated TextAnalyzer etag: {analyzer.etag}")
List TextAnalyzers in an Organization.
from synapseclient import Synapse
from synapseclient.models import TextAnalyzer
syn = Synapse()
syn.login()
analyzers = TextAnalyzer.list(organization_name="my.existing.organization")
for analyzer in analyzers:
print(analyzer.id, analyzer.qualified_name)
Source code in synapseclient/models/search_management.py
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 | |
Methods:¶
store
¶
Create this resource, or update it if it already has an ID.
Source code in synapseclient/models/search_management.py
90 91 92 | |
get
¶
Fetch this resource from Synapse by its ID.
Source code in synapseclient/models/search_management.py
94 95 96 | |
list
¶
list(organization_name: Optional[str] = None, *, synapse_client: Optional[Synapse] = None) -> List[Self]
List resources of this type, optionally filtered by organization.
Source code in synapseclient/models/search_management.py
98 99 100 101 102 103 104 105 | |
synapseclient.models.SynonymSet
dataclass
¶
Bases: OrgScopedResource
A shareable OpenSearch synonym_graph (or legacy synonym) token filter.
Referenced by qualified name {organizationName}-{name} from a TextAnalyzer's
settings.filter registry map via {"$ref": "{organizationName}-{name}"}.
A SynonymSet belongs to an Organization, referenced by organization_name.
Find an Organization you already have access to with
synapseclient.models.organization.list_organizations(), or create one with
synapseclient.models.Organization before creating a SynonymSet.
Represents a Synapse SynonymSet.
Note: SynonymSet has no delete endpoint on the Synapse REST API. Once
created, it cannot be removed, and its owning Organization can no longer be
deleted either. Choose organization_name and name deliberately.
Create a SynonymSet.
from synapseclient import Synapse
from synapseclient.models import SynonymSet
syn = Synapse()
syn.login()
synonyms = SynonymSet(
organization_name="my.existing.organization",
name="disease_synonyms",
description="Common synonyms for disease terms",
definition={
"type": "synonym_graph",
"synonyms": [
# comma-separated = equivalence set, matches either way
"tumor, neoplasm, cancer",
# "=>" = one-way mapping, "AD" expands to the right side only
"AD => Alzheimer's disease",
],
},
)
synonyms = synonyms.store()
print(f"Created SynonymSet: {synonyms.id} ({synonyms.qualified_name})")
Get an existing SynonymSet by ID.
from synapseclient import Synapse
from synapseclient.models import SynonymSet
syn = Synapse()
syn.login()
synonyms = SynonymSet(id="12345").get()
print(synonyms.name, synonyms.definition)
Update an existing SynonymSet.
from synapseclient import Synapse
from synapseclient.models import SynonymSet
syn = Synapse()
syn.login()
synonyms = SynonymSet(id="12345").get()
synonyms.definition["synonyms"].append("MI, myocardial infarction, heart attack")
synonyms = synonyms.store()
print(f"Updated SynonymSet etag: {synonyms.etag}")
List SynonymSets in an Organization.
from synapseclient import Synapse
from synapseclient.models import SynonymSet
syn = Synapse()
syn.login()
synonym_sets = SynonymSet.list(organization_name="my.existing.organization")
for synonyms in synonym_sets:
print(synonyms.id, synonyms.qualified_name)
Source code in synapseclient/models/search_management.py
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 | |
Methods:¶
store
¶
Create this resource, or update it if it already has an ID.
Source code in synapseclient/models/search_management.py
90 91 92 | |
get
¶
Fetch this resource from Synapse by its ID.
Source code in synapseclient/models/search_management.py
94 95 96 | |
list
¶
list(organization_name: Optional[str] = None, *, synapse_client: Optional[Synapse] = None) -> List[Self]
List resources of this type, optionally filtered by organization.
Source code in synapseclient/models/search_management.py
98 99 100 101 102 103 104 105 | |
synapseclient.models.ColumnAnalyzerOverride
dataclass
¶
Bases: OrgScopedResource
A shareable bundle of per-column analyzer assignments. Each entry binds one column to an analyzer;
A ColumnAnalyzerOverride belongs to an Organization, referenced by
organization_name. Find an Organization you already have access to with
synapseclient.models.organization.list_organizations(), or create one with
synapseclient.models.Organization before creating a ColumnAnalyzerOverride.
Represents a Synapse ColumnAnalyzerOverride.
Note: ColumnAnalyzerOverride has no delete endpoint on the Synapse REST API.
Once created, it cannot be removed, and its owning Organization can no
longer be deleted either. Choose organization_name and name deliberately.
Create a ColumnAnalyzerOverride.
from synapseclient import Synapse
from synapseclient.models import ColumnAnalyzerOverride, ColumnAnalyzerOverrideEntry
syn = Synapse()
syn.login()
override = ColumnAnalyzerOverride(
organization_name="my.existing.organization",
name="disease_column_overrides",
description="Use a keyword analyzer for the disease_code column",
overrides=[
ColumnAnalyzerOverrideEntry(
column_name="disease_code",
analyzer={"analyzer": {"default": {"type": "keyword"}}},
),
],
)
override = override.store()
print(f"Created ColumnAnalyzerOverride: {override.id} ({override.qualified_name})")
Get an existing ColumnAnalyzerOverride by ID.
from synapseclient import Synapse
from synapseclient.models import ColumnAnalyzerOverride
syn = Synapse()
syn.login()
override = ColumnAnalyzerOverride(id="12345").get()
print(override.name, override.overrides)
Update an existing ColumnAnalyzerOverride.
from synapseclient import Synapse
from synapseclient.models import ColumnAnalyzerOverride, ColumnAnalyzerOverrideEntry
syn = Synapse()
syn.login()
override = ColumnAnalyzerOverride(id="12345").get()
override.overrides.append(
ColumnAnalyzerOverrideEntry(
column_name="title",
analyzer={"analyzer": {"default": {"type": "standard"}}},
)
)
override = override.store()
print(f"Updated ColumnAnalyzerOverride etag: {override.etag}")
List ColumnAnalyzerOverrides in an Organization.
from synapseclient import Synapse
from synapseclient.models import ColumnAnalyzerOverride
syn = Synapse()
syn.login()
overrides = ColumnAnalyzerOverride.list(organization_name="my.existing.organization")
for override in overrides:
print(override.id, override.qualified_name)
Source code in synapseclient/models/search_management.py
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 | |
Methods:¶
store
¶
Create this resource, or update it if it already has an ID.
Source code in synapseclient/models/search_management.py
90 91 92 | |
get
¶
Fetch this resource from Synapse by its ID.
Source code in synapseclient/models/search_management.py
94 95 96 | |
list
¶
list(organization_name: Optional[str] = None, *, synapse_client: Optional[Synapse] = None) -> List[Self]
List resources of this type, optionally filtered by organization.
Source code in synapseclient/models/search_management.py
98 99 100 101 102 103 104 105 | |
synapseclient.models.SearchConfigBinding
dataclass
¶
Bases: SearchConfigBindingSynchronousProtocol
Attaches a SearchConfiguration to an entity. When a SearchIndex is built, the effective SearchConfiguration is resolved by walking up the entity hierarchy (entity -> folder -> project) and using the first binding found.
Represents a Synapse SearchConfigBinding.
Source code in synapseclient/models/search_management.py
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 | |
Methods:¶
store
¶
Bind search_configuration_id to the entity object_id. Replaces
any existing binding on that entity.
| PARAMETER | DESCRIPTION |
|---|---|
synapse_client
|
If not passed in and caching was not disabled by
|
| RETURNS | DESCRIPTION |
|---|---|
Self
|
Itself, populated from the created SearchConfigBinding. |
| RAISES | DESCRIPTION |
|---|---|
ValueError
|
If |
Bind a SearchConfiguration to a Project.
from synapseclient import Synapse
from synapseclient.models import SearchConfigBinding
syn = Synapse()
syn.login()
binding = SearchConfigBinding(
object_id="syn12345",
search_configuration_id="6789",
)
binding = binding.store()
print(f"Bound SearchConfiguration {binding.search_configuration_id} "
f"to {binding.object_id}")
Source code in synapseclient/models/protocols/search_management_protocol.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | |
get
¶
Get the effective binding for the entity object_id, resolved by
walking up the entity hierarchy.
| PARAMETER | DESCRIPTION |
|---|---|
synapse_client
|
If not passed in and caching was not disabled by
|
| RETURNS | DESCRIPTION |
|---|---|
Self
|
Itself, populated from the resolved SearchConfigBinding. |
| RAISES | DESCRIPTION |
|---|---|
ValueError
|
If |
Get the effective binding for a Project.
from synapseclient import Synapse
from synapseclient.models import SearchConfigBinding
syn = Synapse()
syn.login()
binding = SearchConfigBinding(object_id="syn12345").get()
print(binding.search_configuration_id)
Source code in synapseclient/models/protocols/search_management_protocol.py
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 | |
delete
¶
Clear the binding on the entity object_id.
| PARAMETER | DESCRIPTION |
|---|---|
synapse_client
|
If not passed in and caching was not disabled by
|
| RAISES | DESCRIPTION |
|---|---|
ValueError
|
If |
Clear the binding on a Project.
from synapseclient import Synapse
from synapseclient.models import SearchConfigBinding
syn = Synapse()
syn.login()
SearchConfigBinding(object_id="syn12345").delete()
Source code in synapseclient/models/protocols/search_management_protocol.py
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 | |
Supporting types¶
synapseclient.models.ColumnAnalyzerOverrideEntry
dataclass
¶
Assigns one TextAnalyzer to one column.
Represents a Synapse ColumnAnalyzerOverrideEntry.
Source code in synapseclient/models/search_management.py
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 | |
Attributes¶
column_name
class-attribute
instance-attribute
¶
The name of the column to override. Silently skipped at index-build time if the column is not present in the target SearchIndex's schema — a single override bundle can therefore be applied across several indexes that share some column names
analyzer
class-attribute
instance-attribute
¶
The analyzer to use for this column. Either a reference to a saved
TextAnalyzer written as {"$ref": "{organizationName}-{name}"} (see
[AnalyzerRef][synapseclient.models.search_dsl.AnalyzerRef]), or an inline
OpenSearch settings.analysis
block.