This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| t1.resource_type, | |
| t1.resource_database_id, | |
| t1.resource_associated_entity_id, | |
| t1.request_mode, | |
| t1.request_session_id, | |
| t2.blocking_session_id, | |
| o1.name 'object name', | |
| o1.type_desc 'object descr', | |
| p1.partition_id 'partition id', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| EXEC sys.sp_configure N'show advanced options', N'1' RECONFIGURE WITH OVERRIDE | |
| GO | |
| EXEC sys.sp_configure N'max server memory (MB)', N'2000' | |
| GO | |
| RECONFIGURE WITH OVERRIDE | |
| GO | |
| EXEC sys.sp_configure N'show advanced options', N'0' RECONFIGURE WITH OVERRIDE | |
| GO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- Request Put Template | |
| PUT http://localhost:9200/_template/put-template-with-warmers?pretty=true HTTP/1.1 | |
| Accept: application/json | |
| Content-Type: application/json | |
| Host: localhost:9200 | |
| Content-Length: 172 | |
| Expect: 100-continue | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| POST http://local.localghost.io:9200/nest_test_data-9232/elasticsearchprojects/_search?pretty=true HTTP/1.1 | |
| Accept: application/json | |
| Content-Type: application/json | |
| Host: local.localghost.io:9200 | |
| Content-Length: 444 | |
| Expect: 100-continue | |
| { | |
| "from": 0, | |
| "size": 20, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| POST http://127.0.0.1:9200/nest_test_data-6612/elasticsearchprojects/_search?pretty=true HTTP/1.1 | |
| Accept: application/json | |
| Content-Type: application/json | |
| Host: 127.0.0.1:9200 | |
| Content-Length: 429 | |
| Expect: 100-continue | |
| { | |
| "from": 0, | |
| "size": 10, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # This scripts scans the elasticsearch source code for all the registered REST endpoints | |
| # It will put the formatted output in $DEFINITIONOUTPUTFILE | |
| # [MethodName] [HttpVerb] [Route] | |
| ESFOLDER="../elasticsearch" | |
| DEFINITIONOUTPUTFILE="src/Generated/rest-actions.txt" | |
| # Find all the lines that registerHandlers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <system.net> | |
| <defaultProxy> | |
| <!-- Uncommment this line if you want to see web requests initiated by .NET (think WCF/REST calls) | |
| REMEMBER TO UNDO THIS IF YOU CLOSE FIDDLER! | |
| --> | |
| <!--<proxy bypassonlocal="False" usesystemdefault="True" proxyaddress="http://127.0.0.1:8888" />--> | |
| <proxy bypassonlocal="False" usesystemdefault="True" /> | |
| </defaultProxy> | |
| </system.net> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PUT http://localhost:9200/prefix_test | |
| { | |
| "settings": { | |
| "blocks.read_only": false | |
| }, | |
| "settings": { | |
| "analysis": { | |
| "analyzer": { | |
| "customanalyzer": { | |
| "type": "custom", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DELETE /countries | |
| PUT /countries | |
| { | |
| "mappings": { | |
| "anthems" : { | |
| "properties": { | |
| "location": { | |
| "type": "geo_point" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| try | |
| { | |
| try | |
| { | |
| throw new Exception("inner most exception"); | |
| } | |
| catch (Exception e) | |
| { | |
| //NastyInnerException does its own ISerializable.GetObjectData() implementation | |
| var innerException = new NastyException("nasty inner exception", e); |