US20160048585A1 - Bloom filter with memory element - Google Patents
Bloom filter with memory element Download PDFInfo
- Publication number
- US20160048585A1 US20160048585A1 US14/924,186 US201514924186A US2016048585A1 US 20160048585 A1 US20160048585 A1 US 20160048585A1 US 201514924186 A US201514924186 A US 201514924186A US 2016048585 A1 US2016048585 A1 US 2016048585A1
- Authority
- US
- United States
- Prior art keywords
- elements
- bloom filter
- indexes
- memory
- block
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Abandoned
Links
Images
Classifications
-
- G06F17/30699—
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/30—Information retrieval; Database structures therefor; File system structures therefor of unstructured textual data
- G06F16/33—Querying
- G06F16/335—Filtering based on additional data, e.g. user or group profiles
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/30—Information retrieval; Database structures therefor; File system structures therefor of unstructured textual data
- G06F16/31—Indexing; Data structures therefor; Storage structures
- G06F16/313—Selection or weighting of terms for indexing
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/90—Details of database functions independent of the retrieved data types
- G06F16/95—Retrieval from the web
- G06F16/953—Querying, e.g. by the use of web search engines
- G06F16/9535—Search customisation based on user profiles and personalisation
-
- G06F17/30616—
-
- G06F17/30867—
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F21/00—Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F21/50—Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems
- G06F21/55—Detecting local intrusion or implementing counter-measures
- G06F21/56—Computer malware detection or handling, e.g. anti-virus arrangements
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L63/00—Network architectures or network communication protocols for network security
- H04L63/14—Network architectures or network communication protocols for network security for detecting or protecting against malicious traffic
- H04L63/1408—Network architectures or network communication protocols for network security for detecting or protecting against malicious traffic by monitoring network traffic
- H04L63/1416—Event detection, e.g. attack signature detection
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L63/00—Network architectures or network communication protocols for network security
- H04L63/14—Network architectures or network communication protocols for network security for detecting or protecting against malicious traffic
- H04L63/1441—Countermeasures against malicious traffic
- H04L63/145—Countermeasures against malicious traffic the attack involving the propagation of malware through the network, e.g. viruses, trojans or worms
Definitions
- a network security appliance may examine all packets traversing a network in order to detect malicious packets. For example, a packet may contain a portion of a virus that is identifiable by a certain sequence of characters in the packet. By examining every packet for the sequence of characters, it may be determined if the packet may contain at least part of the virus. Once it is determined that a particular character string is present, further action may be taken. For example, in the case of a network security appliance, the packet may be forwarded to additional logic to determine if the packet actually contains the virus, or if the character sequence just happened to be included in the packet for non-malicious reasons.
- FIG. 1 is an example of a system utilizing a memory to eliminate false positives when using a bloom filter.
- FIG. 2 is an example of a high level flow diagram for inserting an element into the set of elements that are being searched for.
- FIG. 3 is another example of a high level flow diagram for inserting an element into the set of elements that are being searched for.
- FIG. 4 is an example of a high level flow diagram for determining if an element is in a set of elements.
- FIG. 5 is another example of a high level flow diagram for determining if an element is in a set of elements.
- a network security device may be used to examine every packet flowing through the network to identify malicious packets and packet streams by examining each packet for the presence of certain character strings.
- the presence of a “signature” character string may indicate that the packet is part of a flow that includes a computer virus.
- the network security device must compare the contents of every packet to a list of possible signatures to determine if the signature is contained in the packet.
- a similar situation may occur anytime a large amount of data needs to be scanned to detect the presence of specified character strings.
- a bloom filter is a data structure that can be used to quickly determine if an element is included in a set.
- a network security device may have a plurality of known virus signatures. This plurality of signatures can be considered a set of elements.
- Bloom filters may be used to compare an arbitrary input to the set of elements. If the Bloom filters return a false result, it can be guaranteed that the input is not included in the set of elements. However, if the bloom filters return a positive result, this only indicates that the input has the possibility of being included in the set of elements. In other words, the bloom filters may produce false positive results.
- FIG. 1 is an example of a system utilizing a memory to eliminate false positives when using a bloom filter.
- the system 100 may include a device 110 .
- the device 110 may be included in a network security appliance.
- the techniques described herein are applicable anywhere that bloom filters may be used to determine inclusion in a set.
- the device may typically be implemented in hardware, such as in an Application Specific Integrated Circuit (ASIC). Although shown as a standalone device, it should be understood that the capabilities described herein may be included within hardware that also provides other functionality.
- ASIC Application Specific Integrated Circuit
- the device 110 may include processing logic 112 .
- the processing logic may be implemented using discrete logic gates, processors, field programmable gate arrays, or any other type of logic.
- the processing logic may include receive logic 114 , bloom filter index logic 116 , insert logic 118 , and compare logic 120 .
- receive logic 114 may be implemented using discrete logic gates, processors, field programmable gate arrays, or any other type of logic.
- the processing logic may include receive logic 114 , bloom filter index logic 116 , insert logic 118 , and compare logic 120 .
- the various logic blocks may be used to implement the techniques described herein. The operation of these logic blocks is described in further detail below.
- the device 100 may also include memory 122 storing various data structures.
- the data structures can include bloom filters 124 and a set element structure 126 .
- the bloom filters may be used to determine if an element is potentially included in a set, while the set element structure may be used to eliminate false positives that result from the bloom filters.
- the data structures 124 and 126 are also depicted in expanded form as elements 124 - a and 126 - a respectively.
- the following operational example is provided. Assume at the beginning of the example that the set of elements, and as such the bloom filters, are empty. Also assume that the set elements structure is empty. In other words, in the beginning, the device is not searching for any elements.
- the element is first received by the receive logic 114 .
- the element to be inserted may be referred to as the insertion element.
- the insertion element may be processed by a number of hash functions 116 - a . In the present example, there are four hash functions shown, however it should be understood that this is for purposes of explanation and not limitation. These hash functions may be implemented in the bloom filter index logic 116 .
- input 130 which consists of the characters ABC is sent to the hash functions 116 - a .
- the result of this operation is that each hash function produces a value for the input.
- Each of these values may be referred to as a bloom filter index.
- input 130 (ABC) has produced bloom filter indexes 2, 10, 6, and 15. It should be understood that this is an ordered set of indexes. For purposes of this description, groupings of four values within parenthesis indicate the results of the bloom filter index logic.
- the insert logic 118 may be used to insert the element.
- the bloom filter indexes are examined. For each hash function, the entry identified by the index is set to true by the insert logic in the bloom filter associated with the particular hash. For example, the input ABC produced bloom filter indexes 2, 10, 6, and 15 for hash functions 0, 1, 2, and 3 respectively. Thus, looking at bloom filters 124 - a , it can be seen that indexes 2, 10, 6, and 15 have been set to true for their respective bloom filters.
- the set elements structure is also set to reflect the insertion of the element ABC.
- the set element structure is implemented as a data structure in memory, with at least a portion of the memory being a content addressable memory (CAM).
- the ordered bloom filter indexes may be inserted into the content addressable portion of the memory.
- the particular element that is being inserted may also be added to the set elements structure and is associated with the ordered indexes that was inserted into the CAM portion of the memory.
- a rule may be associated with the set element.
- the rule may specify what action is to be taken upon a match of the particular set element. For example, the rule may indicate that further processing on a matching element is needed.
- the particular actions of a rule are relatively unimportant and are dependent on the application utilizing the techniques described herein.
- element ABC has been added to the set element structure as entry 150 .
- it is first determined if the indices hit on an existing CAM entry. If not, an empty entry is found. A non-empty entry is described in further detail below.
- the particular indexes (2, 10, 6, 15) are then placed in the bloom filter indices CAM.
- the actual element is also stored and is associated with the CAM entry.
- the rule for the set element ABC is associated with the set element. This same process may occur for any elements that are to be added to the bloom filter. For example, element XYZ (7, 4, 9, 2) 151 causes the corresponding indices in the bloom filters 124 - a to be set to true.
- the set element structure is modified such that the indices are placed in the CAM, the element is associated with the CAM entry and the rule associated with the element is also associated with the element.
- determining that PQR is not in the set of elements is as simple as examining the first bloom filter. Because index 6 in the bloom filter associated with hash 0 is not set to true in the bloom filters, there is no possibility of the element being included in the set (otherwise the index would have been set to true).
- the second example presents a more interesting case. Assume that it is desired to determine if element QWE is included in the set elements. Assume element QWE has bloom filter indices (2, 0, 9, 15). Here, each of the indexes in the bloom filters corresponding to the element QWE has been set, however, not by the element QWE. For example, in the bloom filter associated with hash 0, index 2 was set by element ABC. The bloom filter associated with hash 1 had index 0 set by both elements LMO and QRS. The bloom filter associated with hash 2 had index 9 set by element XYZ. The bloom filter associated with Hash 3 had index 15 set by element ABC. Thus, even though element QWE is not included in the set of elements, the bloom filters only mechanism would have indicated that element QWE was in the set of elements. In other words, element QWE would have resulted in a false positive.
- the techniques described herein overcome this problem of false positives through the set element structure.
- the set element structure may be examined by compare logic 120 to determine if the element was actually inserted or if it is a false positive.
- the ordered index for element QWE is (2, 0, 9, 15). Because that particular ordering of indexes has not been entered into the CAM, there will be no CAM hit when the set element structure is accessed. As such, this means that the particular combination of indexes produced by element QWE was never inserted into the set of elements, and is not included in the set of elements. Thus, the false positive produced by the bloom filter has been overcome.
- the techniques described herein also prevent false positives in the case where two elements just so happen to have bloom filter indexes that are the same, but only one of the elements was inserted into the set of elements.
- element PDQ has bloom filter indexes (2, 10, 6, 15) which just so happens to be exactly the same as element ABC.
- Element ABC is included in the set.
- the bloom filter analysis will indicate element PDQ as potentially being included in the set of elements.
- the CAM search will result in a hit on ordered indexes (2, 10, 6, 15) because that set of ordered indexes was inserted by element ABC.
- An additional comparison is done by the compare logic between the element and the elements associated with the CAM entry. In this example, CAM entry 150 is only associated with element ABC, and as such element PDQ is not included in the set of elements. The false positive is once again eliminated.
- element QRS has indexes (13, 0, 12, 8).
- the bloom filters would indicate this element as possibly being within the set of elements.
- a CAM search would result in a hit 153 on those indexes.
- the element QRS may then be compared to all elements associated with this CAM entry.
- both elements QRS and LMO are associated with CAM entry 153 .
- an alternate example implementation may directly store the element in the CAM.
- the CAM structure may be searched using the element itself. In such an implementation, the step of locating the CAM entry and then comparing the element associated with the CAM entry to the search element can be avoided.
- the CAM portion of the memory may be eliminated completely.
- the ordered indexes may be hashed to obtain a location in memory.
- the elements (and the corresponding rules) associated with the hash of the ordered indexes may be stored starting at the location in memory.
- the ordered bloom filter indexes may be hashed to determine the location in memory. All elements associated with the location in memory may then be compared to the search element to determine if the search element is included in the set of elements.
- the bloom filters may take care of the majority of cases independently. If an element is definitively not in the set, this can be determined by the bloom filters alone. It is only in the cases where the element has a possibility of being in the set of elements that the second stage of processing occurs. Thus, it is likely that the majority of cases do not even reach the second stage of processing, thus reducing the amount of processing needed for the majority of cases.
- the set elements structure is efficiently organized, the elimination of false positives, when needed, is also efficient.
- FIG. 2 is an example of a high level flow diagram for inserting an element into the set of elements that are being searched for.
- a set element to be included in a set of elements may be received.
- this element may be an element that is to be inserted into a bloom filter in accordance with the techniques described herein.
- the bloom filters may be queried to determine if this element has been added to the set.
- a plurality of bloom filter indexes may be computed based on the set element. In other words the index values for each of the bloom filters may be determined. In some implementations, the computation may be done through a hashing function. Regardless of implementation, a plurality of bloom filter indexes may be determined.
- the set element may be inserted into the bloom filter using the plurality of bloom filter indexes.
- the computed bloom filter indexes are used to determine which entries in the bloom filters will have their bits set to a true value and which ones will remain null.
- the set element may be stored in a memory, wherein the element is accessed in the memory to eliminate false positives. As explained above, when the bloom filters determine that an element may possibly be included in the set of elements, accessing the memory may be used to eliminate a false positive.
- FIG. 3 is another example of a high level flow diagram for inserting an element into the set of elements that are being searched for.
- an element to be included in a set of elements may be received. This set element is to be inserted into the bloom filters.
- a plurality of bloom filter indexes may be computed, based on the element.
- the element may be inserted into the bloom filters using the plurality of bloom filter indexes.
- block 340 it may be determined if the implementation is using a CAM. If so, the process moves to block 345 .
- block 345 an empty entry in the memory may be located, wherein at least a portion of the memory is a CAM.
- block 350 it may be determined if the implementation is storing indexes or the element itself in the CAM. If the bloom filter indexes are being stored in the CAM, the process moves to block 355 .
- block 355 the ordered set of bloom filter indexes is stored in the CAM of the located entry.
- the element is stored, associated with the located entry. If it is determined in block 350 that indexes are not being stored, the process moves to block 365 .
- block 365 the element is stored in the CAM of the located entry.
- block 340 If it is determined in block 340 that the implementation is not using a CAM, the process moves to block 370 .
- a hash of the ordered set of indexes is computed.
- block 375 memory associated with the hash is identified.
- block 380 the element is added to the identified memory.
- FIG. 4 is an example of a high level flow diagram for determining if an element is in a set of elements.
- a search element may be received.
- the search element is the element that may be checked against the bloom filters to determine if the search element may exist in the set of elements.
- bloom filter indexes may be computed for the search element. As explained above, in one implementation, the bloom filter indexes may be computed using a series of hash functions. However, it should be understood that any other method of computing bloom filter indexes would also be suitable.
- the computed bloom filter indexes may be compared to a plurality bloom filters to determine if the search element is not included in the set of elements. As explained above, if any of the bloom filters indexed by the computed indexes do not contain a true value, then the search element can definitively be determined to not be included in the set of elements. However, if all of the bloom filter indexes do contain a true value, it can be determined that the search element has the possibility of being included in the set of elements.
- the search element when the search element is not indicated as not being included in the set of elements, the search element may be compared to a memory to determine if the search element is included in the set of elements. In other words, if the bloom filters indicate a possibility of the element being included in the set of elements, the memory may be accessed to determine if the element is actually included in the set of elements or if it is a false positive.
- FIG. 5 is another example of a high level flow diagram for determining if an element is in a set of elements.
- a search element may be received.
- bloom filter indexes for the search element may be computed.
- the computed bloom filter indexes may be compared to bloom filters to determine if the search element is possible included in the set of elements.
- block 535 it may be determined if there was a match in block 530 . If there was no match, the search element is not included in the set of elements. As such, the process moves to block 540 , in which it is determined that the search element is not in the set of elements because the computed bloom filter indexes are not in the bloom filter. If the determination in block 535 is that the computed bloom filter indexes are included in the bloom filter, the process moves to block 545 .
- block 545 it is determined if this implementation utilizes a CAM. If so, the process moves to block 550 . In block 550 it is determined if the indexes are stored in the CAM. If so, the process moves to block 555 . In block 555 , it may be determined, using a CAM associative on the ordered set of indexes, that an entry exists for the ordered set of indexes. In block 560 , it may be determined that the search element is associated with the entry. If the search element is associated with the entry, this means that the search element is included in the set of elements.
- block 550 If it is determined in block 550 that the indexes are not stored, the process moves to block 565 .
- block 565 it may be determined, using a CAM associative on the search element that an entry exists for the search element. If an entry exists, then this means that the search element is included in the set of elements.
- block 570 a hash of the ordered set of indexes may be computed.
- an entry from the memory may be retrieved based on the hash.
- block 580 it may be determined if the search element is associated with the retrieved entry. If so, this indicates that the search element is included in the set of elements.
Landscapes
- Engineering & Computer Science (AREA)
- Computer Security & Cryptography (AREA)
- Theoretical Computer Science (AREA)
- General Engineering & Computer Science (AREA)
- Databases & Information Systems (AREA)
- Computer Hardware Design (AREA)
- General Physics & Mathematics (AREA)
- Physics & Mathematics (AREA)
- Software Systems (AREA)
- Data Mining & Analysis (AREA)
- Health & Medical Sciences (AREA)
- General Health & Medical Sciences (AREA)
- Virology (AREA)
- Signal Processing (AREA)
- Computer Networks & Wireless Communication (AREA)
- Computing Systems (AREA)
- Computational Linguistics (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
Abstract
Description
- There are many situations in which determining if a specified sequence of characters is included in a larger pool of characters is needed. For example, a network security appliance may examine all packets traversing a network in order to detect malicious packets. For example, a packet may contain a portion of a virus that is identifiable by a certain sequence of characters in the packet. By examining every packet for the sequence of characters, it may be determined if the packet may contain at least part of the virus. Once it is determined that a particular character string is present, further action may be taken. For example, in the case of a network security appliance, the packet may be forwarded to additional logic to determine if the packet actually contains the virus, or if the character sequence just happened to be included in the packet for non-malicious reasons.
-
FIG. 1 is an example of a system utilizing a memory to eliminate false positives when using a bloom filter. -
FIG. 2 is an example of a high level flow diagram for inserting an element into the set of elements that are being searched for. -
FIG. 3 is another example of a high level flow diagram for inserting an element into the set of elements that are being searched for. -
FIG. 4 is an example of a high level flow diagram for determining if an element is in a set of elements. -
FIG. 5 is another example of a high level flow diagram for determining if an element is in a set of elements. - A need often arises to search large set of characters for the presence of certain sequences of characters, referred to as character strings. For example, a network security device may be used to examine every packet flowing through the network to identify malicious packets and packet streams by examining each packet for the presence of certain character strings. The presence of a “signature” character string may indicate that the packet is part of a flow that includes a computer virus. In order to achieve this result, the network security device must compare the contents of every packet to a list of possible signatures to determine if the signature is contained in the packet. A similar situation may occur anytime a large amount of data needs to be scanned to detect the presence of specified character strings.
- Such a comparison can be very resource intensive. Further exacerbating the problem is the fact that the vast majority of packets will not match a signature. Thus, any processing used to analyze packets which do not match a signature is essentially wasted. It would be beneficial to have a mechanism that can quickly determine if a packet contains a signature of interest. One mechanism that has been used is a bloom filter.
- A bloom filter is a data structure that can be used to quickly determine if an element is included in a set. For example, a network security device may have a plurality of known virus signatures. This plurality of signatures can be considered a set of elements. Bloom filters may be used to compare an arbitrary input to the set of elements. If the Bloom filters return a false result, it can be guaranteed that the input is not included in the set of elements. However, if the bloom filters return a positive result, this only indicates that the input has the possibility of being included in the set of elements. In other words, the bloom filters may produce false positive results.
- Techniques provided herein overcome the problem of false positives in bloom filters. An element is received and processed through a plurality of bloom filters. If the bloom filters indicate a negative result, it can be guaranteed that the element is not included in the set of elements. However, if the bloom filters return a positive result, a second step of processing occurs. In the second step, the particular element used in the initial application of the bloom filters are examined to determine if the particular element of interest was actually inserted into the set of elements. The process is described in further detail below and in conjunction with the appended figures.
-
FIG. 1 is an example of a system utilizing a memory to eliminate false positives when using a bloom filter. Thesystem 100 may include adevice 110. For example, thedevice 110 may be included in a network security appliance. However, the techniques described herein are applicable anywhere that bloom filters may be used to determine inclusion in a set. The device may typically be implemented in hardware, such as in an Application Specific Integrated Circuit (ASIC). Although shown as a standalone device, it should be understood that the capabilities described herein may be included within hardware that also provides other functionality. - The
device 110 may includeprocessing logic 112. The processing logic may be implemented using discrete logic gates, processors, field programmable gate arrays, or any other type of logic. The processing logic may include receivelogic 114, bloomfilter index logic 116,insert logic 118, and comparelogic 120. The various logic blocks may be used to implement the techniques described herein. The operation of these logic blocks is described in further detail below. - The
device 100 may also includememory 122 storing various data structures. The data structures can includebloom filters 124 and aset element structure 126. The bloom filters may be used to determine if an element is potentially included in a set, while the set element structure may be used to eliminate false positives that result from the bloom filters. Thedata structures - In order to aid in the description of the techniques presented herein, the following operational example is provided. Assume at the beginning of the example that the set of elements, and as such the bloom filters, are empty. Also assume that the set elements structure is empty. In other words, in the beginning, the device is not searching for any elements. In order to add an element to the bloom filters, the element is first received by the receive
logic 114. The element to be inserted may be referred to as the insertion element. The insertion element may be processed by a number of hash functions 116-a. In the present example, there are four hash functions shown, however it should be understood that this is for purposes of explanation and not limitation. These hash functions may be implemented in the bloomfilter index logic 116. As shown,input 130, which consists of the characters ABC is sent to the hash functions 116-a. The result of this operation is that each hash function produces a value for the input. Each of these values may be referred to as a bloom filter index. As shown, input 130 (ABC) has producedbloom filter indexes - The
insert logic 118 may be used to insert the element. In order to insert the element into the bloom filters, the bloom filter indexes are examined. For each hash function, the entry identified by the index is set to true by the insert logic in the bloom filter associated with the particular hash. For example, the input ABC producedbloom filter indexes hash functions indexes - In addition to setting the index values in the bloom filters, the set elements structure is also set to reflect the insertion of the element ABC. In one example implementation, the set element structure is implemented as a data structure in memory, with at least a portion of the memory being a content addressable memory (CAM). The ordered bloom filter indexes may be inserted into the content addressable portion of the memory. The particular element that is being inserted may also be added to the set elements structure and is associated with the ordered indexes that was inserted into the CAM portion of the memory. Finally, a rule may be associated with the set element. The rule may specify what action is to be taken upon a match of the particular set element. For example, the rule may indicate that further processing on a matching element is needed. The particular actions of a rule are relatively unimportant and are dependent on the application utilizing the techniques described herein.
- In the present example, it can be seen that element ABC has been added to the set element structure as entry 150. In order to insert the element, it is first determined if the indices hit on an existing CAM entry. If not, an empty entry is found. A non-empty entry is described in further detail below. The particular indexes (2, 10, 6, 15) are then placed in the bloom filter indices CAM. The actual element is also stored and is associated with the CAM entry. Finally, the rule for the set element ABC is associated with the set element. This same process may occur for any elements that are to be added to the bloom filter. For example, element XYZ (7, 4, 9, 2) 151 causes the corresponding indices in the bloom filters 124-a to be set to true. In addition, the set element structure is modified such that the indices are placed in the CAM, the element is associated with the CAM entry and the rule associated with the element is also associated with the element.
- The same process can occur for elements DEF (4, 14, 1, 4) 152 and LMO (13, 0, 12, 8) 153. The next element, QRS, when processed by the hash functions results in
indexes - Now that the bloom filter and set element structure have been populated, the use of the system to quickly check for the presence of an element in the set of elements while eliminating the possibility of false positives may now be explained. For purposes of this explanation, several examples are presented to describe various use cases. In the first example, assume that it is desired to know if element PQR is included in the set of elements inserted into the bloom filter. In other words, is string PQR included in the set of strings that are being searched for. Assume that the bloom filter indexes generated by the bloom
filter index logic 116 for the string PQR are (6, 9, 12, 15). The comparelogic 120 may be used to determine if the element PQR has been inserted into the bloom filters. As should be clear, determining that PQR is not in the set of elements is as simple as examining the first bloom filter. Becauseindex 6 in the bloom filter associated withhash 0 is not set to true in the bloom filters, there is no possibility of the element being included in the set (otherwise the index would have been set to true). - The second example presents a more interesting case. Assume that it is desired to determine if element QWE is included in the set elements. Assume element QWE has bloom filter indices (2, 0, 9, 15). Here, each of the indexes in the bloom filters corresponding to the element QWE has been set, however, not by the element QWE. For example, in the bloom filter associated with
hash 0,index 2 was set by element ABC. The bloom filter associated withhash 1 hadindex 0 set by both elements LMO and QRS. The bloom filter associated withhash 2 hadindex 9 set by element XYZ. The bloom filter associated withHash 3 hadindex 15 set by element ABC. Thus, even though element QWE is not included in the set of elements, the bloom filters only mechanism would have indicated that element QWE was in the set of elements. In other words, element QWE would have resulted in a false positive. - The techniques described herein overcome this problem of false positives through the set element structure. Once an element has passed through the bloom filters and has been determined as possibly being included in the set of elements, the set element structure may be examined by compare
logic 120 to determine if the element was actually inserted or if it is a false positive. Here, the ordered index for element QWE is (2, 0, 9, 15). Because that particular ordering of indexes has not been entered into the CAM, there will be no CAM hit when the set element structure is accessed. As such, this means that the particular combination of indexes produced by element QWE was never inserted into the set of elements, and is not included in the set of elements. Thus, the false positive produced by the bloom filter has been overcome. - In addition to overcoming false positives as has been described above, the techniques described herein also prevent false positives in the case where two elements just so happen to have bloom filter indexes that are the same, but only one of the elements was inserted into the set of elements. For example, assume that element PDQ has bloom filter indexes (2, 10, 6, 15) which just so happens to be exactly the same as element ABC. Element ABC is included in the set. The bloom filter analysis will indicate element PDQ as potentially being included in the set of elements. The CAM search will result in a hit on ordered indexes (2, 10, 6, 15) because that set of ordered indexes was inserted by element ABC. An additional comparison is done by the compare logic between the element and the elements associated with the CAM entry. In this example, CAM entry 150 is only associated with element ABC, and as such element PDQ is not included in the set of elements. The false positive is once again eliminated.
- The techniques described herein are also useful when two elements have the same ordered bloom filter indexes and are both included in the set of elements. For example, element QRS has indexes (13, 0, 12, 8). The bloom filters would indicate this element as possibly being within the set of elements. A CAM search would result in a hit 153 on those indexes. The element QRS may then be compared to all elements associated with this CAM entry. Here, both elements QRS and LMO are associated with CAM entry 153. Thus, because the element QRS matches, it can be determined that the element is within the set of elements.
- Although the above description was based on using a CAM that stores the bloom filter indexes of an element, an alternate example implementation may directly store the element in the CAM. Thus, once the bloom filters have determined that an element may potentially be included in the set of elements, the CAM structure may be searched using the element itself. In such an implementation, the step of locating the CAM entry and then comparing the element associated with the CAM entry to the search element can be avoided.
- In yet another example implementation (not shown), the CAM portion of the memory may be eliminated completely. The ordered indexes may be hashed to obtain a location in memory. The elements (and the corresponding rules) associated with the hash of the ordered indexes may be stored starting at the location in memory. Once the bloom filters have determined that an element may be included in the set of elements, the ordered bloom filter indexes may be hashed to determine the location in memory. All elements associated with the location in memory may then be compared to the search element to determine if the search element is included in the set of elements.
- This two stage approach eliminates the possibility of false positives without requiring excessive amounts of processing. The bloom filters may take care of the majority of cases independently. If an element is definitively not in the set, this can be determined by the bloom filters alone. It is only in the cases where the element has a possibility of being in the set of elements that the second stage of processing occurs. Thus, it is likely that the majority of cases do not even reach the second stage of processing, thus reducing the amount of processing needed for the majority of cases. In addition, because the set elements structure is efficiently organized, the elimination of false positives, when needed, is also efficient.
- The above description was simplified to relatively small bloom filters with a small number of hash functions for purposes of ease of description only. The techniques described herein are applicable regardless of the size of the bloom filters or of the number of hash functions. In fact, an actual implementation may include indexes in the range of tens of thousands with significantly larger number of hash functions. The techniques described herein are not limited by the selected size of the bloom filter or number of hash functions.
- Furthermore, the above description was presented in terms of elements that were a fixed number of characters, and the number of characters was the same for all elements. This was for purposes of explanation only. The techniques described herein are applicable regardless of the length of the element that is being searched for or if the elements have different lengths. What should be understood is that the results of the initial hash are compared to the bloom filter to determine if the element is included in the set of elements. The creation of the hash results are not dependent on the length of the input.
- In addition, the techniques above are applicable in any situation wherein a bloom filter may be employed. Although the example of a network security device was mentioned, it should be understood that the techniques are applicable to any use of bloom filters.
-
FIG. 2 is an example of a high level flow diagram for inserting an element into the set of elements that are being searched for. In block 210 a set element to be included in a set of elements may be received. For example, this element may be an element that is to be inserted into a bloom filter in accordance with the techniques described herein. At a later point in time, the bloom filters may be queried to determine if this element has been added to the set. In block 220 a plurality of bloom filter indexes may be computed based on the set element. In other words the index values for each of the bloom filters may be determined. In some implementations, the computation may be done through a hashing function. Regardless of implementation, a plurality of bloom filter indexes may be determined. - In
block 230, the set element may be inserted into the bloom filter using the plurality of bloom filter indexes. In other words, the computed bloom filter indexes are used to determine which entries in the bloom filters will have their bits set to a true value and which ones will remain null. Inblock 240, the set element may be stored in a memory, wherein the element is accessed in the memory to eliminate false positives. As explained above, when the bloom filters determine that an element may possibly be included in the set of elements, accessing the memory may be used to eliminate a false positive. -
FIG. 3 is another example of a high level flow diagram for inserting an element into the set of elements that are being searched for. Inblock 310, just as above, an element to be included in a set of elements may be received. This set element is to be inserted into the bloom filters. Inblock 320, a plurality of bloom filter indexes may be computed, based on the element. Inblock 330, the element may be inserted into the bloom filters using the plurality of bloom filter indexes. - In
block 340 it may be determined if the implementation is using a CAM. If so, the process moves to block 345. Inblock 345, an empty entry in the memory may be located, wherein at least a portion of the memory is a CAM. Inblock 350 it may be determined if the implementation is storing indexes or the element itself in the CAM. If the bloom filter indexes are being stored in the CAM, the process moves to block 355. Inblock 355, the ordered set of bloom filter indexes is stored in the CAM of the located entry. Inblock 360, the element is stored, associated with the located entry. If it is determined inblock 350 that indexes are not being stored, the process moves to block 365. Inblock 365, the element is stored in the CAM of the located entry. - If it is determined in
block 340 that the implementation is not using a CAM, the process moves to block 370. Inblock 370, a hash of the ordered set of indexes is computed. Inblock 375, memory associated with the hash is identified. Inblock 380, the element is added to the identified memory. -
FIG. 4 is an example of a high level flow diagram for determining if an element is in a set of elements. Inblock 410, a search element may be received. The search element is the element that may be checked against the bloom filters to determine if the search element may exist in the set of elements. Inblock 420, bloom filter indexes may be computed for the search element. As explained above, in one implementation, the bloom filter indexes may be computed using a series of hash functions. However, it should be understood that any other method of computing bloom filter indexes would also be suitable. - In
block 430, the computed bloom filter indexes may be compared to a plurality bloom filters to determine if the search element is not included in the set of elements. As explained above, if any of the bloom filters indexed by the computed indexes do not contain a true value, then the search element can definitively be determined to not be included in the set of elements. However, if all of the bloom filter indexes do contain a true value, it can be determined that the search element has the possibility of being included in the set of elements. - In
block 440, when the search element is not indicated as not being included in the set of elements, the search element may be compared to a memory to determine if the search element is included in the set of elements. In other words, if the bloom filters indicate a possibility of the element being included in the set of elements, the memory may be accessed to determine if the element is actually included in the set of elements or if it is a false positive. -
FIG. 5 is another example of a high level flow diagram for determining if an element is in a set of elements. Inblock 510, just as above, a search element may be received. Inblock 520, again as above, bloom filter indexes for the search element may be computed. Inblock 530, the computed bloom filter indexes may be compared to bloom filters to determine if the search element is possible included in the set of elements. - In
block 535, it may be determined if there was a match inblock 530. If there was no match, the search element is not included in the set of elements. As such, the process moves to block 540, in which it is determined that the search element is not in the set of elements because the computed bloom filter indexes are not in the bloom filter. If the determination inblock 535 is that the computed bloom filter indexes are included in the bloom filter, the process moves to block 545. - In
block 545 it is determined if this implementation utilizes a CAM. If so, the process moves to block 550. Inblock 550 it is determined if the indexes are stored in the CAM. If so, the process moves to block 555. Inblock 555, it may be determined, using a CAM associative on the ordered set of indexes, that an entry exists for the ordered set of indexes. Inblock 560, it may be determined that the search element is associated with the entry. If the search element is associated with the entry, this means that the search element is included in the set of elements. - If it is determined in
block 550 that the indexes are not stored, the process moves to block 565. Inblock 565 it may be determined, using a CAM associative on the search element that an entry exists for the search element. If an entry exists, then this means that the search element is included in the set of elements. - If it is determined in
block 545 that the implementation does not use a CAM, the process moves to block 570. Inblock 570, a hash of the ordered set of indexes may be computed. Inblock 575 an entry from the memory may be retrieved based on the hash. Inblock 580, it may be determined if the search element is associated with the retrieved entry. If so, this indicates that the search element is included in the set of elements.
Claims (6)
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US14/924,186 US20160048585A1 (en) | 2013-05-17 | 2015-10-27 | Bloom filter with memory element |
Applications Claiming Priority (2)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US13/896,378 US9171153B2 (en) | 2013-05-17 | 2013-05-17 | Bloom filter with memory element |
US14/924,186 US20160048585A1 (en) | 2013-05-17 | 2015-10-27 | Bloom filter with memory element |
Related Parent Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US13/896,378 Division US9171153B2 (en) | 2013-05-17 | 2013-05-17 | Bloom filter with memory element |
Publications (1)
Publication Number | Publication Date |
---|---|
US20160048585A1 true US20160048585A1 (en) | 2016-02-18 |
Family
ID=51896947
Family Applications (2)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US13/896,378 Active 2033-10-12 US9171153B2 (en) | 2013-05-17 | 2013-05-17 | Bloom filter with memory element |
US14/924,186 Abandoned US20160048585A1 (en) | 2013-05-17 | 2015-10-27 | Bloom filter with memory element |
Family Applications Before (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US13/896,378 Active 2033-10-12 US9171153B2 (en) | 2013-05-17 | 2013-05-17 | Bloom filter with memory element |
Country Status (1)
Country | Link |
---|---|
US (2) | US9171153B2 (en) |
Families Citing this family (156)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US9158667B2 (en) | 2013-03-04 | 2015-10-13 | Micron Technology, Inc. | Apparatuses and methods for performing logical operations using sensing circuitry |
US8964496B2 (en) | 2013-07-26 | 2015-02-24 | Micron Technology, Inc. | Apparatuses and methods for performing compare operations using sensing circuitry |
US8971124B1 (en) | 2013-08-08 | 2015-03-03 | Micron Technology, Inc. | Apparatuses and methods for performing logical operations using sensing circuitry |
US9153305B2 (en) | 2013-08-30 | 2015-10-06 | Micron Technology, Inc. | Independently addressable memory array address spaces |
US9019785B2 (en) | 2013-09-19 | 2015-04-28 | Micron Technology, Inc. | Data shifting via a number of isolation devices |
US9449675B2 (en) | 2013-10-31 | 2016-09-20 | Micron Technology, Inc. | Apparatuses and methods for identifying an extremum value stored in an array of memory cells |
US9430191B2 (en) | 2013-11-08 | 2016-08-30 | Micron Technology, Inc. | Division operations for memory |
US10445769B2 (en) * | 2013-12-24 | 2019-10-15 | Google Llc | Systems and methods for audience measurement |
US20150270015A1 (en) * | 2014-03-19 | 2015-09-24 | Micron Technology, Inc. | Memory mapping |
US9934856B2 (en) | 2014-03-31 | 2018-04-03 | Micron Technology, Inc. | Apparatuses and methods for comparing data patterns in memory |
US9704540B2 (en) | 2014-06-05 | 2017-07-11 | Micron Technology, Inc. | Apparatuses and methods for parity determination using sensing circuitry |
US9711207B2 (en) | 2014-06-05 | 2017-07-18 | Micron Technology, Inc. | Performing logical operations using sensing circuitry |
US9711206B2 (en) | 2014-06-05 | 2017-07-18 | Micron Technology, Inc. | Performing logical operations using sensing circuitry |
US9496023B2 (en) | 2014-06-05 | 2016-11-15 | Micron Technology, Inc. | Comparison operations on logical representations of values in memory |
US9830999B2 (en) | 2014-06-05 | 2017-11-28 | Micron Technology, Inc. | Comparison operations in memory |
US9779019B2 (en) | 2014-06-05 | 2017-10-03 | Micron Technology, Inc. | Data storage layout |
US10074407B2 (en) | 2014-06-05 | 2018-09-11 | Micron Technology, Inc. | Apparatuses and methods for performing invert operations using sensing circuitry |
US9449674B2 (en) | 2014-06-05 | 2016-09-20 | Micron Technology, Inc. | Performing logical operations using sensing circuitry |
US9455020B2 (en) | 2014-06-05 | 2016-09-27 | Micron Technology, Inc. | Apparatuses and methods for performing an exclusive or operation using sensing circuitry |
US9786335B2 (en) | 2014-06-05 | 2017-10-10 | Micron Technology, Inc. | Apparatuses and methods for performing logical operations using sensing circuitry |
US9910787B2 (en) | 2014-06-05 | 2018-03-06 | Micron Technology, Inc. | Virtual address table |
US10600076B2 (en) | 2014-08-14 | 2020-03-24 | Google Llc | Systems and methods for obfuscated audience measurement |
US10068652B2 (en) | 2014-09-03 | 2018-09-04 | Micron Technology, Inc. | Apparatuses and methods for determining population count |
US9740607B2 (en) | 2014-09-03 | 2017-08-22 | Micron Technology, Inc. | Swap operations in memory |
US9847110B2 (en) | 2014-09-03 | 2017-12-19 | Micron Technology, Inc. | Apparatuses and methods for storing a data value in multiple columns of an array corresponding to digits of a vector |
US9589602B2 (en) | 2014-09-03 | 2017-03-07 | Micron Technology, Inc. | Comparison operations in memory |
US9898252B2 (en) | 2014-09-03 | 2018-02-20 | Micron Technology, Inc. | Multiplication operations in memory |
US9747961B2 (en) | 2014-09-03 | 2017-08-29 | Micron Technology, Inc. | Division operations in memory |
US9904515B2 (en) | 2014-09-03 | 2018-02-27 | Micron Technology, Inc. | Multiplication operations in memory |
US9836218B2 (en) | 2014-10-03 | 2017-12-05 | Micron Technology, Inc. | Computing reduction and prefix sum operations in memory |
US9940026B2 (en) | 2014-10-03 | 2018-04-10 | Micron Technology, Inc. | Multidimensional contiguous memory allocation |
US10163467B2 (en) | 2014-10-16 | 2018-12-25 | Micron Technology, Inc. | Multiple endianness compatibility |
US10147480B2 (en) | 2014-10-24 | 2018-12-04 | Micron Technology, Inc. | Sort operation in memory |
US9779784B2 (en) | 2014-10-29 | 2017-10-03 | Micron Technology, Inc. | Apparatuses and methods for performing logical operations using sensing circuitry |
US10073635B2 (en) | 2014-12-01 | 2018-09-11 | Micron Technology, Inc. | Multiple endianness compatibility |
US9747960B2 (en) | 2014-12-01 | 2017-08-29 | Micron Technology, Inc. | Apparatuses and methods for converting a mask to an index |
US10032493B2 (en) | 2015-01-07 | 2018-07-24 | Micron Technology, Inc. | Longest element length determination in memory |
US10061590B2 (en) | 2015-01-07 | 2018-08-28 | Micron Technology, Inc. | Generating and executing a control flow |
US9583163B2 (en) | 2015-02-03 | 2017-02-28 | Micron Technology, Inc. | Loop structure for operations in memory |
US9608810B1 (en) | 2015-02-05 | 2017-03-28 | Ionic Security Inc. | Systems and methods for encryption and provision of information security using platform services |
WO2016126472A1 (en) | 2015-02-06 | 2016-08-11 | Micron Technology, Inc. | Apparatuses and methods for scatter and gather |
WO2016126474A1 (en) | 2015-02-06 | 2016-08-11 | Micron Technology, Inc. | Apparatuses and methods for parallel writing to multiple memory device locations |
WO2016126478A1 (en) | 2015-02-06 | 2016-08-11 | Micron Technology, Inc. | Apparatuses and methods for memory device as a store for program instructions |
US9634992B1 (en) | 2015-02-28 | 2017-04-25 | Palo Alto Networks, Inc. | Probabilistic duplicate detection |
WO2016144724A1 (en) | 2015-03-10 | 2016-09-15 | Micron Technology, Inc. | Apparatuses and methods for shift decisions |
US9898253B2 (en) | 2015-03-11 | 2018-02-20 | Micron Technology, Inc. | Division operations on variable length elements in memory |
US9741399B2 (en) * | 2015-03-11 | 2017-08-22 | Micron Technology, Inc. | Data shift by elements of a vector in memory |
WO2016144726A1 (en) | 2015-03-12 | 2016-09-15 | Micron Technology, Inc. | Apparatuses and methods for data movement |
US10146537B2 (en) | 2015-03-13 | 2018-12-04 | Micron Technology, Inc. | Vector population count determination in memory |
US10049054B2 (en) | 2015-04-01 | 2018-08-14 | Micron Technology, Inc. | Virtual register file |
US10140104B2 (en) | 2015-04-14 | 2018-11-27 | Micron Technology, Inc. | Target architecture determination |
US9959923B2 (en) | 2015-04-16 | 2018-05-01 | Micron Technology, Inc. | Apparatuses and methods to reverse data stored in memory |
US10073786B2 (en) | 2015-05-28 | 2018-09-11 | Micron Technology, Inc. | Apparatuses and methods for compute enabled cache |
US9704541B2 (en) | 2015-06-12 | 2017-07-11 | Micron Technology, Inc. | Simulating access lines |
US9921777B2 (en) | 2015-06-22 | 2018-03-20 | Micron Technology, Inc. | Apparatuses and methods for data transfer from sensing circuitry to a controller |
US9996479B2 (en) | 2015-08-17 | 2018-06-12 | Micron Technology, Inc. | Encryption of executables in computational memory |
US9905276B2 (en) | 2015-12-21 | 2018-02-27 | Micron Technology, Inc. | Control of sensing components in association with performing operations |
US10503730B1 (en) | 2015-12-28 | 2019-12-10 | Ionic Security Inc. | Systems and methods for cryptographically-secure queries using filters generated by multiple parties |
US10740474B1 (en) | 2015-12-28 | 2020-08-11 | Ionic Security Inc. | Systems and methods for generation of secure indexes for cryptographically-secure queries |
US9952925B2 (en) | 2016-01-06 | 2018-04-24 | Micron Technology, Inc. | Error code calculation on sensing circuitry |
US10387887B2 (en) * | 2016-01-12 | 2019-08-20 | Sugarcrm Inc. | Bloom filter driven data synchronization |
US10048888B2 (en) | 2016-02-10 | 2018-08-14 | Micron Technology, Inc. | Apparatuses and methods for partitioned parallel data movement |
US9892767B2 (en) | 2016-02-12 | 2018-02-13 | Micron Technology, Inc. | Data gathering in memory |
US10282438B2 (en) | 2016-02-12 | 2019-05-07 | International Business Machines Corporation | Locating data in a set with a single index using multiple property values |
US10210195B2 (en) | 2016-02-12 | 2019-02-19 | International Business Machines Corporation | Locating data in a set with a single index using multiple property values |
US9971541B2 (en) | 2016-02-17 | 2018-05-15 | Micron Technology, Inc. | Apparatuses and methods for data movement |
US9899070B2 (en) | 2016-02-19 | 2018-02-20 | Micron Technology, Inc. | Modified decode for corner turn |
US10956439B2 (en) | 2016-02-19 | 2021-03-23 | Micron Technology, Inc. | Data transfer with a bit vector operation device |
US9697876B1 (en) | 2016-03-01 | 2017-07-04 | Micron Technology, Inc. | Vertical bit vector shift in memory |
US10262721B2 (en) | 2016-03-10 | 2019-04-16 | Micron Technology, Inc. | Apparatuses and methods for cache invalidate |
US9997232B2 (en) | 2016-03-10 | 2018-06-12 | Micron Technology, Inc. | Processing in memory (PIM) capable memory device having sensing circuitry performing logic operations |
US10379772B2 (en) | 2016-03-16 | 2019-08-13 | Micron Technology, Inc. | Apparatuses and methods for operations using compressed and decompressed data |
US9910637B2 (en) | 2016-03-17 | 2018-03-06 | Micron Technology, Inc. | Signed division in memory |
US11074988B2 (en) | 2016-03-22 | 2021-07-27 | Micron Technology, Inc. | Apparatus and methods for debugging on a host and memory device |
US10388393B2 (en) | 2016-03-22 | 2019-08-20 | Micron Technology, Inc. | Apparatus and methods for debugging on a host and memory device |
US10120740B2 (en) | 2016-03-22 | 2018-11-06 | Micron Technology, Inc. | Apparatus and methods for debugging on a memory device |
US10977033B2 (en) | 2016-03-25 | 2021-04-13 | Micron Technology, Inc. | Mask patterns generated in memory from seed vectors |
US10474581B2 (en) | 2016-03-25 | 2019-11-12 | Micron Technology, Inc. | Apparatuses and methods for cache operations |
US10074416B2 (en) | 2016-03-28 | 2018-09-11 | Micron Technology, Inc. | Apparatuses and methods for data movement |
US10430244B2 (en) | 2016-03-28 | 2019-10-01 | Micron Technology, Inc. | Apparatuses and methods to determine timing of operations |
US10453502B2 (en) | 2016-04-04 | 2019-10-22 | Micron Technology, Inc. | Memory bank power coordination including concurrently performing a memory operation in a selected number of memory regions |
US10607665B2 (en) | 2016-04-07 | 2020-03-31 | Micron Technology, Inc. | Span mask generation |
US9818459B2 (en) | 2016-04-19 | 2017-11-14 | Micron Technology, Inc. | Invert operations using sensing circuitry |
US9659605B1 (en) | 2016-04-20 | 2017-05-23 | Micron Technology, Inc. | Apparatuses and methods for performing corner turn operations using sensing circuitry |
US10153008B2 (en) | 2016-04-20 | 2018-12-11 | Micron Technology, Inc. | Apparatuses and methods for performing corner turn operations using sensing circuitry |
US10042608B2 (en) | 2016-05-11 | 2018-08-07 | Micron Technology, Inc. | Signed division in memory |
US9659610B1 (en) | 2016-05-18 | 2017-05-23 | Micron Technology, Inc. | Apparatuses and methods for shifting data |
US10049707B2 (en) | 2016-06-03 | 2018-08-14 | Micron Technology, Inc. | Shifting data |
US10387046B2 (en) | 2016-06-22 | 2019-08-20 | Micron Technology, Inc. | Bank to bank data transfer |
US10037785B2 (en) | 2016-07-08 | 2018-07-31 | Micron Technology, Inc. | Scan chain operation in sensing circuitry |
US10388360B2 (en) | 2016-07-19 | 2019-08-20 | Micron Technology, Inc. | Utilization of data stored in an edge section of an array |
US10733089B2 (en) | 2016-07-20 | 2020-08-04 | Micron Technology, Inc. | Apparatuses and methods for write address tracking |
US10387299B2 (en) | 2016-07-20 | 2019-08-20 | Micron Technology, Inc. | Apparatuses and methods for transferring data |
US9767864B1 (en) | 2016-07-21 | 2017-09-19 | Micron Technology, Inc. | Apparatuses and methods for storing a data value in a sensing circuitry element |
US9972367B2 (en) | 2016-07-21 | 2018-05-15 | Micron Technology, Inc. | Shifting data in sensing circuitry |
US10303632B2 (en) | 2016-07-26 | 2019-05-28 | Micron Technology, Inc. | Accessing status information |
US10468087B2 (en) | 2016-07-28 | 2019-11-05 | Micron Technology, Inc. | Apparatuses and methods for operations in a self-refresh state |
US9990181B2 (en) | 2016-08-03 | 2018-06-05 | Micron Technology, Inc. | Apparatuses and methods for random number generation |
US11029951B2 (en) | 2016-08-15 | 2021-06-08 | Micron Technology, Inc. | Smallest or largest value element determination |
US10606587B2 (en) | 2016-08-24 | 2020-03-31 | Micron Technology, Inc. | Apparatus and methods related to microcode instructions indicating instruction types |
US10466928B2 (en) | 2016-09-15 | 2019-11-05 | Micron Technology, Inc. | Updating a register in memory |
US10387058B2 (en) | 2016-09-29 | 2019-08-20 | Micron Technology, Inc. | Apparatuses and methods to change data category values |
US10014034B2 (en) | 2016-10-06 | 2018-07-03 | Micron Technology, Inc. | Shifting data in sensing circuitry |
US10529409B2 (en) | 2016-10-13 | 2020-01-07 | Micron Technology, Inc. | Apparatuses and methods to perform logical operations using sensing circuitry |
US9805772B1 (en) | 2016-10-20 | 2017-10-31 | Micron Technology, Inc. | Apparatuses and methods to selectively perform logical operations |
US10373666B2 (en) | 2016-11-08 | 2019-08-06 | Micron Technology, Inc. | Apparatuses and methods for compute components formed over an array of memory cells |
US10423353B2 (en) | 2016-11-11 | 2019-09-24 | Micron Technology, Inc. | Apparatuses and methods for memory alignment |
US9761300B1 (en) | 2016-11-22 | 2017-09-12 | Micron Technology, Inc. | Data shift apparatuses and methods |
US10402340B2 (en) | 2017-02-21 | 2019-09-03 | Micron Technology, Inc. | Memory array page table walk |
US10268389B2 (en) | 2017-02-22 | 2019-04-23 | Micron Technology, Inc. | Apparatuses and methods for in-memory operations |
US10403352B2 (en) | 2017-02-22 | 2019-09-03 | Micron Technology, Inc. | Apparatuses and methods for compute in data path |
US10838899B2 (en) | 2017-03-21 | 2020-11-17 | Micron Technology, Inc. | Apparatuses and methods for in-memory data switching networks |
US10185674B2 (en) | 2017-03-22 | 2019-01-22 | Micron Technology, Inc. | Apparatus and methods for in data path compute operations |
US11222260B2 (en) | 2017-03-22 | 2022-01-11 | Micron Technology, Inc. | Apparatuses and methods for operating neural networks |
US10049721B1 (en) | 2017-03-27 | 2018-08-14 | Micron Technology, Inc. | Apparatuses and methods for in-memory operations |
US10043570B1 (en) | 2017-04-17 | 2018-08-07 | Micron Technology, Inc. | Signed element compare in memory |
US10147467B2 (en) | 2017-04-17 | 2018-12-04 | Micron Technology, Inc. | Element value comparison in memory |
US9997212B1 (en) | 2017-04-24 | 2018-06-12 | Micron Technology, Inc. | Accessing data in memory |
US10942843B2 (en) | 2017-04-25 | 2021-03-09 | Micron Technology, Inc. | Storing data elements of different lengths in respective adjacent rows or columns according to memory shapes |
US10236038B2 (en) | 2017-05-15 | 2019-03-19 | Micron Technology, Inc. | Bank to bank data transfer |
US10068664B1 (en) | 2017-05-19 | 2018-09-04 | Micron Technology, Inc. | Column repair in memory |
US10013197B1 (en) | 2017-06-01 | 2018-07-03 | Micron Technology, Inc. | Shift skip |
US10152271B1 (en) | 2017-06-07 | 2018-12-11 | Micron Technology, Inc. | Data replication |
US10262701B2 (en) | 2017-06-07 | 2019-04-16 | Micron Technology, Inc. | Data transfer between subarrays in memory |
US10635654B2 (en) * | 2017-06-12 | 2020-04-28 | Samsung Electronics Co., Ltd. | Data journaling for large solid state storage devices with low DRAM/SRAM |
US10318168B2 (en) | 2017-06-19 | 2019-06-11 | Micron Technology, Inc. | Apparatuses and methods for simultaneous in data path compute operations |
US10162005B1 (en) | 2017-08-09 | 2018-12-25 | Micron Technology, Inc. | Scan chain operations |
US10534553B2 (en) | 2017-08-30 | 2020-01-14 | Micron Technology, Inc. | Memory array accessibility |
US10416927B2 (en) | 2017-08-31 | 2019-09-17 | Micron Technology, Inc. | Processing in memory |
US10741239B2 (en) | 2017-08-31 | 2020-08-11 | Micron Technology, Inc. | Processing in memory device including a row address strobe manager |
US10346092B2 (en) | 2017-08-31 | 2019-07-09 | Micron Technology, Inc. | Apparatuses and methods for in-memory operations using timing circuitry |
US10409739B2 (en) | 2017-10-24 | 2019-09-10 | Micron Technology, Inc. | Command selection policy |
US10522210B2 (en) | 2017-12-14 | 2019-12-31 | Micron Technology, Inc. | Apparatuses and methods for subarray addressing |
US10332586B1 (en) | 2017-12-19 | 2019-06-25 | Micron Technology, Inc. | Apparatuses and methods for subrow addressing |
US10614875B2 (en) | 2018-01-30 | 2020-04-07 | Micron Technology, Inc. | Logical operations using memory cells |
US10437557B2 (en) | 2018-01-31 | 2019-10-08 | Micron Technology, Inc. | Determination of a match between data values stored by several arrays |
US11194477B2 (en) | 2018-01-31 | 2021-12-07 | Micron Technology, Inc. | Determination of a match between data values stored by three or more arrays |
US10725696B2 (en) | 2018-04-12 | 2020-07-28 | Micron Technology, Inc. | Command selection policy with read priority |
US10440341B1 (en) | 2018-06-07 | 2019-10-08 | Micron Technology, Inc. | Image processor formed in an array of memory cells |
US10248646B1 (en) | 2018-08-22 | 2019-04-02 | Cognigo Research Ltd. | Token matching in large document corpora |
US10769071B2 (en) | 2018-10-10 | 2020-09-08 | Micron Technology, Inc. | Coherent memory access |
US11175915B2 (en) | 2018-10-10 | 2021-11-16 | Micron Technology, Inc. | Vector registers implemented in memory |
US10483978B1 (en) | 2018-10-16 | 2019-11-19 | Micron Technology, Inc. | Memory device processing |
US11184446B2 (en) | 2018-12-05 | 2021-11-23 | Micron Technology, Inc. | Methods and apparatus for incentivizing participation in fog networks |
US11012414B2 (en) | 2019-04-30 | 2021-05-18 | Centripetal Networks, Inc. | Methods and systems for prevention of attacks associated with the domain name system |
US11012417B2 (en) | 2019-04-30 | 2021-05-18 | Centripetal Networks, Inc. | Methods and systems for efficient packet filtering |
US12118056B2 (en) | 2019-05-03 | 2024-10-15 | Micron Technology, Inc. | Methods and apparatus for performing matrix transformations within a memory array |
US10715493B1 (en) | 2019-07-03 | 2020-07-14 | Centripetal Networks, Inc. | Methods and systems for efficient cyber protections of mobile devices |
US11582191B2 (en) | 2019-07-03 | 2023-02-14 | Centripetal Networks, Inc. | Cyber protections of remote networks via selective policy enforcement at a central network |
US10867655B1 (en) | 2019-07-08 | 2020-12-15 | Micron Technology, Inc. | Methods and apparatus for dynamically adjusting performance of partitioned memory |
US11360768B2 (en) | 2019-08-14 | 2022-06-14 | Micron Technolgy, Inc. | Bit string operations in memory |
US11449577B2 (en) | 2019-11-20 | 2022-09-20 | Micron Technology, Inc. | Methods and apparatus for performing video processing matrix operations within a memory array |
US11853385B2 (en) | 2019-12-05 | 2023-12-26 | Micron Technology, Inc. | Methods and apparatus for performing diversity matrix operations within a memory array |
US11227641B1 (en) | 2020-07-21 | 2022-01-18 | Micron Technology, Inc. | Arithmetic operations in memory |
US11663058B1 (en) | 2021-05-03 | 2023-05-30 | Amazon Technologies, Inc. | Preemptive filtering of events of an event bus with a deterministic filter |
US11809378B2 (en) | 2021-10-15 | 2023-11-07 | Morgan Stanley Services Group Inc. | Network file deduplication using decaying bloom filters |
Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20090046581A1 (en) * | 2007-08-14 | 2009-02-19 | Anand Eswaran | Flow Estimator |
US20110219010A1 (en) * | 2010-03-03 | 2011-09-08 | Ewha University Industry Collaboration Foundation | Method and apparatus for packet classification using bloom filter |
US20140025684A1 (en) * | 2012-07-20 | 2014-01-23 | Apple Inc. | Indexing and searching a data collection |
Family Cites Families (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US7444515B2 (en) | 2003-08-14 | 2008-10-28 | Washington University | Method and apparatus for detecting predefined signatures in packet payload using Bloom filters |
US7779463B2 (en) * | 2004-05-11 | 2010-08-17 | The Trustees Of Columbia University In The City Of New York | Systems and methods for correlating and distributing intrusion alert information among collaborating computer systems |
US7937428B2 (en) * | 2006-12-21 | 2011-05-03 | International Business Machines Corporation | System and method for generating and using a dynamic bloom filter |
KR100960117B1 (en) | 2007-12-17 | 2010-05-28 | 한국전자통신연구원 | Signature pattern matching method, system and recording medium recording signature pattern |
US8055633B2 (en) | 2008-01-21 | 2011-11-08 | International Business Machines Corporation | Method, system and computer program product for duplicate detection |
-
2013
- 2013-05-17 US US13/896,378 patent/US9171153B2/en active Active
-
2015
- 2015-10-27 US US14/924,186 patent/US20160048585A1/en not_active Abandoned
Patent Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20090046581A1 (en) * | 2007-08-14 | 2009-02-19 | Anand Eswaran | Flow Estimator |
US20110219010A1 (en) * | 2010-03-03 | 2011-09-08 | Ewha University Industry Collaboration Foundation | Method and apparatus for packet classification using bloom filter |
US20140025684A1 (en) * | 2012-07-20 | 2014-01-23 | Apple Inc. | Indexing and searching a data collection |
Also Published As
Publication number | Publication date |
---|---|
US20140344934A1 (en) | 2014-11-20 |
US9171153B2 (en) | 2015-10-27 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US9171153B2 (en) | Bloom filter with memory element | |
US9798714B2 (en) | System and method for keyword spotting using representative dictionary | |
Kumar et al. | Advanced algorithms for fast and scalable deep packet inspection | |
Liu et al. | A fast string-matching algorithm for network processor-based intrusion detection system | |
US8903831B2 (en) | Rejecting rows when scanning a collision chain | |
EP2830260B1 (en) | Rule matching method and device | |
US7730058B2 (en) | Searching for information utilizing a probabilistic detector | |
CN109635569B (en) | A kind of vulnerability detection method and device | |
WO2015009542A1 (en) | Semantics-oriented analysis of log message content | |
US10176187B2 (en) | Method and apparatus for generating a plurality of indexed data fields | |
Van Der Merwe et al. | Turning evil regexes harmless | |
CN109150962B (en) | Method for rapidly identifying HTTP request header through keywords | |
US7853591B1 (en) | Protection of database operations | |
US8935270B1 (en) | Content search system including multiple deterministic finite automaton engines having shared memory resources | |
CN101938474B (en) | Network intrusion detection and protection method and device | |
CN107992402A (en) | Blog management method and log management apparatus | |
KR101587756B1 (en) | Apparatus and method for searching string data using bloom filter pre-searching | |
US8051060B1 (en) | Automatic detection of separators for compression | |
Hubballi et al. | Layered higher order n-grams for hardening payload based anomaly intrusion detection | |
US20120096512A1 (en) | Policy selector representation for fast retrieval | |
CN106250440B (en) | Document management method and device | |
US10462157B2 (en) | Multi-pattern matching algorithm and processing apparatus using the same | |
US11025650B2 (en) | Multi-pattern policy detection system and method | |
CN113992364A (en) | Network data packet blocking optimization method and system | |
Nourani et al. | Bloom filter accelerator for string matching |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: HEWLETT-PACKARD DEVELOPMENT COMPANY, L.P., TEXAS Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:JORGENSEN, STEVEN GLEN;REEL/FRAME:038266/0112 Effective date: 20151214 |
|
AS | Assignment |
Owner name: HEWLETT PACKARD ENTERPRISE DEVELOPMENT LP, TEXAS Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:HEWLETT-PACKARD DEVELOPMENT COMPANY, L.P.;REEL/FRAME:039023/0161 Effective date: 20151027 |
|
STCB | Information on status: application discontinuation |
Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION |
|
AS | Assignment |
Owner name: GS YUASA INTERNATIONAL LTD., JAPAN Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:KAWAI, AKIO;KOZONO, SHO;SIGNING DATES FROM 20221003 TO 20221008;REEL/FRAME:061715/0404 |